#DEBUG=-ggdb CFLAGS=-O2 -Wall -W -Wno-parentheses -Wstrict-prototypes -Wmissing-prototypes -Winline $(DEBUG) -std=gnu99 -DVERSION=$(VERSION) -DYEAR=$(YEAR) LDFLAGS=-lncurses VERSION=0.4 YEAR=2006 all: cm cm: cm.o util.o charset.o rfc822.o cm.o: cm.c clists.h util.h charset.h util.o: util.c util.h charset.o: charset.c util.h charset.h rfc822.h rfc822.o: rfc822.c util.h rfc822.h clean: rm -f `find . -name "*~" -or -name "*.[oa]" -or -name "\#*\#" -or -name TAGS -or -name core` rm -f cm log rm -rf maint/dist distclean: clean .PHONY: all clean distclean