SRC = attachment.C challenge.C readwebmail.C webfolder.C webmail.C OBJ = attachment.o challenge.o readwebmail.o webfolder.o webmail.o # Include common include file, contains first target include ../common all: webmail webmail: ${OBJ} $(CPP) -o webmail ${CFLAGS} ${CCLINKFLAGS} ${OBJ} ${LIBS} \ ../unixlib/*.o ../libdbox/*.o /usr/lib/libcrypt.so clean: rm -f *.o webmail@EXEEXT@ .depend distclean: rm -f Makefile rm -Rf CVS # # include a dependency file if one exists # ifeq (.depend,$(wildcard .depend)) include .depend endif