|
From: <jgr...@us...> - 2003-10-15 17:05:17
|
Update of /cvsroot/popfile/engine In directory sc8-pr-cvs1:/tmp/cvs-serv667 Modified Files: Makefile Log Message: Added rc target used to make it easy for me to make and ship release candidates Index: Makefile =================================================================== RCS file: /cvsroot/popfile/engine/Makefile,v retrieving revision 1.23 retrieving revision 1.24 diff -C2 -d -r1.23 -r1.24 *** Makefile 1 Oct 2003 14:34:28 -0000 1.23 --- Makefile 15 Oct 2003 17:05:12 -0000 1.24 *************** *** 23,26 **** --- 23,29 ---- @echo " ZIP files for Windows and cross-platform" @echo " version" + @echo "rc - After doing package moves the ZIP files to be RC zip files" + @echo " The RC number is set with the RC parameter so do" + @echo " make rc RC=RC6 for example." # test runs the POPFile unit test suite *************** *** 92,94 **** # installer ! package: $(POPFILE_ZIP) windows \ No newline at end of file --- 95,111 ---- # installer ! package: $(POPFILE_ZIP) windows ! ! # Used to convert the ZIP files to RC ZIP files and ! # upload to SourceForge ! ! rc: CP_ZIP = popfile-$(POPFILE_VERSION)$(RC).zip ! rc: WINDOWS_ZIP = ../windows/popfile-$(POPFILE_VERSION)$(RC)-windows.zip ! ! rc: ! rm -f $(CP_ZIP) ! rm -f $(WINDOWS_ZIP) ! mv $(POPFILE_ZIP) $(CP_ZIP) ! mv ../windows/popfile-$(POPFILE_VERSION)-windows.zip $(WINDOWS_ZIP) ! chmod go+r $(CP_ZIP) $(WINDOWS_ZIP) ! scp -p $(CP_ZIP) $(WINDOWS_ZIP) jgr...@po...:/home/groups/p/po/popfile/htdocs |