Update of /cvsroot/popfile/engine
In directory sc8-pr-cvs1:/tmp/cvs-serv10715
Modified Files:
Makefile
Log Message:
Update the makefile so that we handle the new skins and don't include SMTP.pm and Module.pm in the package
Index: Makefile
===================================================================
RCS file: /cvsroot/popfile/engine/Makefile,v
retrieving revision 1.4
retrieving revision 1.5
diff -C2 -d -r1.4 -r1.5
*** Makefile 7 Feb 2003 22:20:45 -0000 1.4
--- Makefile 28 Feb 2003 02:01:33 -0000 1.5
***************
*** 6,10 ****
# Copyright (c) 2003 John Graham-Cumming
! .PHONY: test package windows
# test runs the POPFile unit test suite
--- 6,13 ----
# Copyright (c) 2003 John Graham-Cumming
! .PHONY: test package windows core manual skins
!
! error:
! @echo Must specify one of test, package or windows
# test runs the POPFile unit test suite
***************
*** 18,25 ****
# build a ZIPped up package of POPFile
! popfile.zip: popfile.pl pix.gif black.gif insert.pl Classifier/*.pm POPFile/*.pm Proxy/*.pm manual/*.gif manual/*/*.html languages/*.msg skins/*.css skins/*.gif
! rm -f $@
! wzzip -r -P $@ -a $^
# package builds a zip file containing the POPFile package and the windows
# installer
--- 21,37 ----
# build a ZIPped up package of POPFile
! BUILD_ZIP=wzzip -r -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
+ rm -f popfile.zip
+ $(BUILD_ZIP)
+
+ manual: manual/*.gif manual/en/*.html languages/*.msg
+ $(BUILD_ZIP)
+
+ skins: skins/*.css skins/*.gif skins/*/*.gif
+ $(BUILD_ZIP)
+
# package builds a zip file containing the POPFile package and the windows
# installer
|