#DEBUG=-ggdb CFLAGS=-O2 -Wall -W -Wno-parentheses -Wstrict-prototypes -Wmissing-prototypes -Winline $(DEBUG) -std=gnu99 -DVERSION=$(VERSION) -DYEAR=$(YEAR) VERSION=1.0 YEAR=2009 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 mrate rm -rf maint/dist distclean: clean .PHONY: all clean distclean