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:
authorHans Lambermont <hans@lambermont.dyndns.org>2002-10-15 23:32:27 +0400
committerHans Lambermont <hans@lambermont.dyndns.org>2002-10-15 23:32:27 +0400
commite9e0ca63191fb6ba7ea5eb733f60d0cb896696a3 (patch)
tree2ee47163b5e25fe2734c94788d33a471c020de6e /intern/Makefile
parent599dc60f6dc97d3ef8efdd294ca2e89fbf498f54 (diff)
fix the build order for the inter-module dependencies
Diffstat (limited to 'intern/Makefile')
-rw-r--r--intern/Makefile15
1 files changed, 11 insertions, 4 deletions
diff --git a/intern/Makefile b/intern/Makefile
index e17cc62a4e6..fa194795a0c 100644
--- a/intern/Makefile
+++ b/intern/Makefile
@@ -28,11 +28,18 @@
# Contributor(s): none yet.
#
# ***** END GPL/BL DUAL LICENSE BLOCK *****
-# Bounces make to subdirectories. Intended for future tinderbox tests.
+# Bounces make to subdirectories. Also installs after succesful all target.
SOURCEDIR = intern
-DIRS = ghost guardedalloc bmfont decimation string memutil action moto
-DIRS += iksolver keymaker container
-
include nan_subdirs.mk
+
+ALLDIRS = string ghost guardedalloc bmfont moto container memutil
+ALLDIRS += decimation action iksolver keymaker
+
+all::
+ @for i in $(ALLDIRS); do \
+ echo "====> $(MAKE) $@ in $(SOURCEDIR)/$$i" ;\
+ $(MAKE) -C $$i install || exit 1; \
+ done
+