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:
Diffstat (limited to 'extern/Makefile')
-rw-r--r--extern/Makefile12
1 files changed, 8 insertions, 4 deletions
diff --git a/extern/Makefile b/extern/Makefile
index 5dbc6f4a0f9..0225f78fabf 100644
--- a/extern/Makefile
+++ b/extern/Makefile
@@ -30,13 +30,17 @@
# ***** END GPL/BL DUAL LICENSE BLOCK *****
# Bounces make to subdirectories. Also installs after succesful all target.
+include nan_definitions.mk
+
SOURCEDIR = extern
+DIR = $(OCGDIR)/extern
+DIRS = ode
-ALLDIRS = ode
+include nan_subdirs.mk
-all::
- @for i in $(ALLDIRS); do \
+install:
+ @for i in $(DIRS); do \
echo "====> $(MAKE) $@ in $(SOURCEDIR)/$$i" ;\
- $(MAKE) -C $$i install || exit 1; \
+ $(MAKE) -C $$i $@ || exit 1; \
done