Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStefan Gartner <stefang@aon.at>2003-02-02 20:28:15 +0300
committerStefan Gartner <stefang@aon.at>2003-02-02 20:28:15 +0300
commit5146bc6e41375b0a03b8462f8cbc15f2eeceb126 (patch)
tree1df282871b16ae3b22a54e9866f90e9f4574423f /source/darwin/Makefile
parent1ee378865fe91f3e517cfdab341d95836c6770fd (diff)
build the OSX application bundle in $(DIR)/bin
Diffstat (limited to 'source/darwin/Makefile')
-rw-r--r--source/darwin/Makefile16
1 files changed, 8 insertions, 8 deletions
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 {} \;