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:
authorKent Mein <mein@cs.umn.edu>2003-05-03 00:52:58 +0400
committerKent Mein <mein@cs.umn.edu>2003-05-03 00:52:58 +0400
commit3b14d730d9b16be01e696d8631c4b5dfb7201b8f (patch)
tree630a13d6752a7d74371c4262e19d5721c32655f4 /release/Makefile
parent0aaa02e6b585e71f8a4ea9dfd9f37bc6ab1725b9 (diff)
Updated the scatter program to fix some warnings.
Modified the Makefile's call to strip so it leaves symbols for plugins... Kent
Diffstat (limited to 'release/Makefile')
-rw-r--r--release/Makefile16
1 files changed, 8 insertions, 8 deletions
diff --git a/release/Makefile b/release/Makefile
index db19081f60d..89224ef7c4a 100644
--- a/release/Makefile
+++ b/release/Makefile
@@ -104,6 +104,14 @@ install: package
#@cp -r python $(DISTDIR)/python
#@rm -fr $(DISTDIR)/python/CVS
+ ifneq ($(NOSTRIP),true)
+ @echo "----> Strip blender executable"
+ ifeq ($(OS),darwin)
+ @strip -x $(OCGDIR)/bin/blender$(EXT0)/Contents/MacOS/blender
+ else
+ @strip -x $(DISTDIR)/blender$(EXT0)
+ endif
+ endif
@echo "----> Copy blender$(EXT0) executable"
ifeq ($(TYPE),-static)
@cp $(OCGDIR)/bin/blenderstatic$(EXT0) $(DISTDIR)/blender$(EXT0)
@@ -124,14 +132,6 @@ install: package
@rm -fr $(DISTDIR)/plugins/CVS $(DISTDIR)/plugins/*/CVS \
$(DISTDIR)/plugins/*/*.o
endif
- ifneq ($(NOSTRIP),true)
- @echo "----> Strip blender executable"
- ifeq ($(OS),darwin)
- @strip $(OCGDIR)/bin/blender$(EXT0)/Contents/MacOS/blender
- else
- @strip $(DISTDIR)/blender$(EXT0)
- endif
- endif
@[ ! -x $(CONFIG_GUESS)/specific.sh ] || (\
echo "**--> Execute specific.sh in $(CONFIG_GUESS)/" && \
cd $(CONFIG_GUESS) && ./specific.sh )