mirror of
https://github.com/nealey/eris.git
synced 2025-01-19 05:14:40 -07:00
15 lines
255 B
Makefile
15 lines
255 B
Makefile
CFLAGS = -Wall -Werror
|
|
|
|
all: eris
|
|
|
|
eris: eris.o strings.o mime.o timerfc.o
|
|
|
|
eris.o: version.h
|
|
version.h: CHANGES
|
|
awk -F : 'NR==1 {printf("const char *FNORD = \"eris/%s\";\n", $$1);}' $< > $@
|
|
|
|
test: eris
|
|
sh ./test.sh
|
|
|
|
clean:
|
|
rm -f *.[oa] version.h eris
|