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 'intern/Makefile')
-rw-r--r--intern/Makefile7
1 files changed, 6 insertions, 1 deletions
diff --git a/intern/Makefile b/intern/Makefile
index bed8713c4ed..4e3b84c2bf1 100644
--- a/intern/Makefile
+++ b/intern/Makefile
@@ -32,7 +32,7 @@
SOURCEDIR = intern
-include nan_subdirs.mk
+# include nan_subdirs.mk
ALLDIRS = string ghost guardedalloc bmfont moto container memutil
ALLDIRS += decimation iksolver keymaker bsp python/freeze
@@ -42,4 +42,9 @@ all::
echo "====> $(MAKE) $@ in $(SOURCEDIR)/$$i" ;\
$(MAKE) -C $$i install || exit 1; \
done
+clean test debug::
+ @for i in $(ALLDIRS); do \
+ echo "====> $(MAKE) $@ in $(SOURCEDIR)/$$i" ;\
+ $(MAKE) -C $$i $@ || exit 1; \
+ done