From f8ae7db9aa64c8daefa1be1b380715798517e7b3 Mon Sep 17 00:00:00 2001 From: Kent Mein Date: Mon, 3 Feb 2003 16:29:30 +0000 Subject: [PATCH] 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 --- intern/Makefile | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) 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