From: <jgr...@us...> - 2003-05-20 13:35:26
|
Update of /cvsroot/popfile/windows In directory sc8-pr-cvs1:/tmp/cvs-serv32491 Modified Files: Makefile installer.nsi Log Message: Update installer to show RC3; improve Makefile so that it warns if POPFILE_VERSION not set Index: Makefile =================================================================== RCS file: /cvsroot/popfile/windows/Makefile,v retrieving revision 1.9 retrieving revision 1.10 diff -C2 -d -r1.9 -r1.10 *** Makefile 5 May 2003 20:40:10 -0000 1.9 --- Makefile 20 May 2003 13:35:21 -0000 1.10 *************** *** 1,4 **** --- 1,8 ---- .PHONY: all build + ifndef POPFILE_VERSION + $(error POPFILE_VERSION must be defined, run 'make windows' in the engine directory) + endif + POPFILE_WINDOWS_ZIP := popfile-$(POPFILE_VERSION)-windows.zip BUILD_ZIP=../engine/wzzip -P $(POPFILE_WINDOWS_ZIP) -a $^ Index: installer.nsi =================================================================== RCS file: /cvsroot/popfile/windows/installer.nsi,v retrieving revision 1.48 retrieving revision 1.49 diff -C2 -d -r1.48 -r1.49 *** installer.nsi 20 May 2003 11:13:42 -0000 1.48 --- installer.nsi 20 May 2003 13:35:22 -0000 1.49 *************** *** 15,19 **** !define MUI_PRODUCT "POPFile" ! !define MUI_VERSION "0.19.0 RC2" !include "MUI.nsh" --- 15,19 ---- !define MUI_PRODUCT "POPFile" ! !define MUI_VERSION "0.19.0 RC3" !include "MUI.nsh" |