]> mj.ucw.cz Git - maildups.git/blob - Makefile
Burst length must be at least 1.
[maildups.git] / Makefile
1 #DEBUG=-ggdb
2 CFLAGS=-O2 -Wall -W -Wno-parentheses -Wstrict-prototypes -Wmissing-prototypes -Winline $(DEBUG) -std=gnu99 -DVERSION=$(VERSION) -DYEAR=$(YEAR)
3
4 VERSION=1.0
5 YEAR=2009
6
7 all: mdup smail mrate
8
9 mdup: mdup.o util.o sha1.o
10 smail: smail.o util.o
11 mrate: mrate.o util.o
12
13 mdup.o: mdup.c util.h
14 smail.o: smail.c util.h
15 mrate.o: mrate.c util.h
16 util.o: util.c util.h
17 sha1.o: sha1.c util.h
18
19 clean:
20         rm -f `find . -name "*~" -or -name "*.[oa]" -or -name "\#*\#" -or -name TAGS -or -name core`
21         rm -f mdup smail mrate
22         rm -rf maint/dist
23
24 distclean: clean
25
26 .PHONY: all clean distclean