]> mj.ucw.cz Git - maildups.git/blobdiff - Makefile
Added the `mrate' utility.
[maildups.git] / Makefile
index d19e610701ea8c179bfecd198bdfe4e284f05497..16548e9d8aca2f69b5734fe7ee3422b4473e0aa3 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -1,22 +1,24 @@
 #DEBUG=-ggdb
 CFLAGS=-O2 -Wall -W -Wno-parentheses -Wstrict-prototypes -Wmissing-prototypes -Winline $(DEBUG) -std=gnu99 -DVERSION=$(VERSION) -DYEAR=$(YEAR)
 
-VERSION=0.9
-YEAR=2006
+VERSION=1.0
+YEAR=2009
 
-all: mdup smail
+all: mdup smail mrate
 
 mdup: mdup.o util.o sha1.o
 smail: smail.o util.o
+mrate: mrate.o util.o
 
 mdup.o: mdup.c util.h
 smail.o: smail.c util.h
+mrate.o: mrate.c util.h
 util.o: util.c util.h
 sha1.o: sha1.c util.h
 
 clean:
        rm -f `find . -name "*~" -or -name "*.[oa]" -or -name "\#*\#" -or -name TAGS -or -name core`
-       rm -f mdup smail
+       rm -f mdup smail mrate
        rm -rf maint/dist
 
 distclean: clean