Update of /cvsroot/popfile/engine
In directory sc8-pr-cvs1:/tmp/cvs-serv1035/engine
Modified Files:
Makefile
Log Message:
Simplify the rc target
Index: Makefile
===================================================================
RCS file: /cvsroot/popfile/engine/Makefile,v
retrieving revision 1.24
retrieving revision 1.25
diff -C2 -d -r1.24 -r1.25
*** Makefile 15 Oct 2003 17:05:12 -0000 1.24
--- Makefile 15 Oct 2003 17:07:28 -0000 1.25
***************
*** 77,81 ****
# build a ZIPped up package of POPFile
- POPFILE_ZIP := popfile-$(POPFILE_VERSION).zip
BUILD_ZIP=wzzip -P $(POPFILE_ZIP) -a $^
xplat: $(POPFILE_ZIP)
--- 77,80 ----
***************
*** 100,111 ****
# 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
--- 99,103 ----
# upload to SourceForge
rc:
! chmod go+r $(POPFILE_ZIP) $(POPFILE_WINDOWS_ZIP)
scp -p $(CP_ZIP) $(WINDOWS_ZIP) jgr...@po...:/home/groups/p/po/popfile/htdocs
|