From 5146bc6e41375b0a03b8462f8cbc15f2eeceb126 Mon Sep 17 00:00:00 2001 From: Stefan Gartner Date: Sun, 2 Feb 2003 17:28:15 +0000 Subject: build the OSX application bundle in $(DIR)/bin --- source/darwin/Makefile | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) (limited to 'source') diff --git a/source/darwin/Makefile b/source/darwin/Makefile index 3c851f7c789..9af61d90d9a 100644 --- a/source/darwin/Makefile +++ b/source/darwin/Makefile @@ -1,5 +1,5 @@ # -# $Id: Makefile,v 1.2 2002/10/13 15:57:12 hans Exp $ +# $Id: Makefile,v 1.3 2002/11/03 22:38:32 maarten Exp $ # # ***** BEGIN GPL/BL DUAL LICENSE BLOCK ***** # @@ -37,13 +37,13 @@ DIR = $(OCGDIR)/$(DEBUG_DIR) all:: @# set up directory structure for the OSX aplication bundle @echo "---> creating directory structure for $(APPLICATION)" - @rm -rf $(DIR)/$(APPLICATION).app - @cp -R $(APPLICATION).app $(DIR) - @#cat $(APPLICATION).app/Contents/Info.plist | sed s/VERSION/`cat ../../VERSION`/ | sed s/DATE/`date +'%Y-%b-%d'`/ > $(DIR)/$(APPLICATION).app/Contents/Info.plist + @rm -rf $(DIR)/bin/$(APPLICATION).app + @cp -R $(APPLICATION).app $(DIR)/bin + @#cat $(APPLICATION).app/Contents/Info.plist | sed s/VERSION/`cat ../../VERSION`/ | sed s/DATE/`date +'%Y-%b-%d'`/ > $(DIR)/bin/$(APPLICATION).app/Contents/Info.plist @echo "---> copying binary" - @cp $(DIR)/$(APPLICATION) $(DIR)/$(APPLICATION).app/Contents/MacOS/ + @cp $(DIR)/bin/$(APPLICATION) $(DIR)/bin/$(APPLICATION).app/Contents/MacOS/ @echo "---> adding excutable attributes" - @chmod +x $(DIR)/$(APPLICATION).app/Contents/MacOS/$(APPLICATION) + @chmod +x $(DIR)/bin/$(APPLICATION).app/Contents/MacOS/$(APPLICATION) @echo "---> removing CVS directories and Mac hidden files from distribution" - @find $(DIR)/$(APPLICATION).app -name CVS -prune -exec rm -rf {} \; - @find $(DIR)/$(APPLICATION).app -name .DS_Store -exec rm -f {} \; + @find $(DIR)/bin/$(APPLICATION).app -name CVS -prune -exec rm -rf {} \; + @find $(DIR)/bin/$(APPLICATION).app -name .DS_Store -exec rm -f {} \; -- cgit v1.2.3