eris/Makefile

16 lines
255 B
Makefile
Raw Permalink Normal View History

2012-10-30 19:10:55 -06:00
CFLAGS = -Wall -Werror
2011-08-16 14:36:11 -06:00
all: eris
2011-08-16 14:36:11 -06:00
2012-10-30 17:45:19 -06:00
eris: eris.o strings.o mime.o timerfc.o
2012-03-07 18:10:16 -07:00
2012-10-30 19:10:55 -06:00
eris.o: version.h
version.h: CHANGES
awk -F : 'NR==1 {printf("const char *FNORD = \"eris/%s\";\n", $$1);}' $< > $@
test: eris
2012-02-24 20:06:17 -07:00
sh ./test.sh
2012-02-15 21:58:43 -07:00
2011-08-16 14:36:11 -06:00
clean:
2012-10-30 19:10:55 -06:00
rm -f *.[oa] version.h eris