|
From: <jgr...@us...> - 2003-09-11 23:05:02
|
Update of /cvsroot/popfile/engine In directory sc8-pr-cvs1:/tmp/cvs-serv27554 Modified Files: Makefile vars.mak Log Message: Update Makefile to create popfile.exe and popfileb.exe using ActiveState's PerlTray application Index: Makefile =================================================================== RCS file: /cvsroot/popfile/engine/Makefile,v retrieving revision 1.18 retrieving revision 1.19 diff -C2 -d -r1.18 -r1.19 *** Makefile 20 Aug 2003 01:40:12 -0000 1.18 --- Makefile 11 Sep 2003 23:04:59 -0000 1.19 *************** *** 17,21 **** @echo " (test and coverage pass the TESTARGS variable to the test suite)" @echo ! @echo "windows - Build Windows installer" @echo "macosx - Build Mac OS X package installer" @echo "package - Build Windows installer, and create" --- 17,21 ---- @echo " (test and coverage pass the TESTARGS variable to the test suite)" @echo ! @echo "windows - Build Windows executables and installer" @echo "macosx - Build Mac OS X package installer" @echo "package - Build Windows installer, and create" *************** *** 43,49 **** macosx: ; @$(MAKE) -C ../macosx # windows builds the Windows installer ! windows: ; @$(MAKE) -C ../windows # build a ZIPped up package of POPFile --- 43,61 ---- macosx: ; @$(MAKE) -C ../macosx + # Builds the tray application using PerlTray + + winexe: popfile.exe popfileb.exe + + TRAY_OPTIONS = --exe $@ --force --clean --dependent --xclude --icon ../windows/POPFileIcon/popfile.ico --script popfile.pl --info CompanyName="The POPFile Project" --info LegalCopyright="Copyright (c) 2003 John Graham-Cumming" --info ProductName=POPFile --info ProductVersion=$(POPFILE_VERSION).0 --info FileDescription=POPFile --info FileVersion=$(POPFILE_VERSION).0 + + popfile.exe: popfile.pl + perltray $(TRAY_OPTIONS) + + popfileb.exe: popfile.pl + perltray --nogui $(TRAY_OPTIONS) + # windows builds the Windows installer ! windows: winexe; @$(MAKE) -C ../windows # build a ZIPped up package of POPFile Index: vars.mak =================================================================== RCS file: /cvsroot/popfile/engine/vars.mak,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** vars.mak 9 Jun 2003 18:35:58 -0000 1.1 --- vars.mak 11 Sep 2003 23:04:59 -0000 1.2 *************** *** 6,10 **** # Copyright (c) 2003 John Graham-Cumming ! export POPFILE_VERSION=0.19.0 --- 6,10 ---- # Copyright (c) 2003 John Graham-Cumming ! export POPFILE_VERSION=0.20.0 |