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
This commit is contained in:
Kent Mein 2003-02-03 16:29:30 +00:00
parent ce1ee7193b
commit f8ae7db9aa

@ -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