|
From: <jgr...@us...> - 2003-07-15 17:53:33
|
Update of /cvsroot/popfile/engine In directory sc8-pr-cvs1:/tmp/cvs-serv6474 Modified Files: Makefile Log Message: Add macosx target to Makefile to enable building of the Mac OS X package installer Index: Makefile =================================================================== RCS file: /cvsroot/popfile/engine/Makefile,v retrieving revision 1.14 retrieving revision 1.15 diff -C2 -d -r1.14 -r1.15 *** Makefile 13 Jul 2003 04:01:35 -0000 1.14 --- Makefile 15 Jul 2003 17:53:30 -0000 1.15 *************** *** 8,12 **** include vars.mak ! .PHONY: test package windows core manual skins coverage error: --- 8,12 ---- include vars.mak ! .PHONY: test package windows core manual skins coverage macosx error: *************** *** 18,21 **** --- 18,22 ---- @echo @echo "windows - Build Windows installer" + @echo "macosx - Build Mac OS X package installer" @echo "package - Build Windows installer, and create" @echo " ZIP files for Windows and cross-platform" *************** *** 37,40 **** --- 38,45 ---- endif @$(MAKE) --no-print-directory -C tests runtest TESTARGS=$(TESTARGS) DEBUGARGS= + + # Mac OS X is built in the Mac OS X directory + + macosx: ; @$(MAKE) -C ../macosx # windows builds the Windows installer |