convert from svn repository: remove tags directory
[lttv.git] / trunk / obsolete / genevent / Makefile
CommitLineData
3583026d 1SHELL = /bin/sh
2
3CC = gcc
4
71e09db9 5#CFLAGS = -std=c99 -Wall -g -DDEBUG
6CFLAGS = -std=c99 -Wall -g
3583026d 7
8all: genevent
9
10install: genevent
11 cp -f genevent /usr/local/bin
12
92d82357 13genevent: genevent.o parser.o
14 $(CC) $(CFLAGS) -o $@ $^
3583026d 15
16genevent.o: genevent.c genevent.h parser.h
92d82357 17 $(CC) $(CFLAGS) -c -o $@ $<
3583026d 18
19parser.o: parser.c parser.h
92d82357 20 $(CC) $(CFLAGS) -c -o $@ $<
3583026d 21
22.PHONY: clean
23
24clean:
25 rm -rf *.o *~ *# genevent
26
27
This page took 0.036431 seconds and 4 git commands to generate.