From: <jgr...@us...> - 2003-05-05 20:40:13
|
Update of /cvsroot/popfile/engine In directory sc8-pr-cvs1:/tmp/cvs-serv13464/engine Modified Files: Makefile Log Message: Minor updates to Makefile, change in-box to inbox, junk to spam and make deletion kill off the corpus Index: Makefile =================================================================== RCS file: /cvsroot/popfile/engine/Makefile,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -d -r1.7 -r1.8 *** Makefile 14 Mar 2003 22:34:24 -0000 1.7 --- Makefile 5 May 2003 20:40:09 -0000 1.8 *************** *** 6,9 **** --- 6,11 ---- # Copyright (c) 2003 John Graham-Cumming + export POPFILE_VERSION=0.19.0 + .PHONY: test package windows core manual skins *************** *** 21,29 **** # build a ZIPped up package of POPFile ! BUILD_ZIP=wzzip -P popfile.zip -a $^ ! popfile.zip: core manual skins ! core: popfile.pl pix.gif black.gif insert.pl Classifier/*.pm POPFile/Configuration.pm POPFile/Logger.pm Proxy/POP3.pm UI/HTML.pm *.change license ! rm -f popfile.zip $(BUILD_ZIP) --- 23,32 ---- # build a ZIPped up package of POPFile ! POPFILE_ZIP := popfile-$(POPFILE_VERSION).zip ! BUILD_ZIP=wzzip -P $(POPFILE_ZIP) -a $^ ! $(POPFILE_ZIP): core manual skins ! core: popfile.pl pix.gif black.gif insert.pl Classifier/*.pm POPFile/*.pm Proxy/POP3.pm Proxy/Proxy.pm UI/HT??.pm *.change license ! rm -f $(POPFILE_ZIP) $(BUILD_ZIP) *************** *** 37,39 **** # installer ! package: popfile.zip windows \ No newline at end of file --- 40,42 ---- # installer ! package: $(POPFILE_ZIP) windows \ No newline at end of file |