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-02-03 19:29:30 +0300
committerKent Mein <mein@cs.umn.edu>2003-02-03 19:29:30 +0300
commitf8ae7db9aa64c8daefa1be1b380715798517e7b3 (patch)
tree3a999e1536653e3f036e5f1eb62a34823d9cf985 /intern/Makefile
parentce1ee7193be54574e5c64c41990a1f155ea364b5 (diff)
I took out the include since it was causing problems on some platforms
and added targets for clean, debug and test, so we don't need the include. Kent
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