X-Git-Url: http://mj.ucw.cz/gitweb/?a=blobdiff_plain;f=Makefile;h=16548e9d8aca2f69b5734fe7ee3422b4473e0aa3;hb=dda9f8338c94c5cf699d717ec39a7ad7bd678681;hp=d19e610701ea8c179bfecd198bdfe4e284f05497;hpb=eaae8b26daa2e99f96ff082d8bfb6574074211de;p=maildups.git diff --git a/Makefile b/Makefile index d19e610..16548e9 100644 --- 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