# HG changeset patch # User Thinker K.F. Li # Date 1221788814 -28800 # Node ID 9af23d9584d879ad992244c8d55c80a9b2168ed8 # Parent 81c03fdd94d05e0533d6d0b7a33c5b5be23671a3 Using $(MAKE) instead of make diff -r 81c03fdd94d0 -r 9af23d9584d8 Makefile --- a/Makefile Thu Sep 18 17:12:41 2008 +0800 +++ b/Makefile Fri Sep 19 09:46:54 2008 +0800 @@ -3,20 +3,20 @@ all: .for i in $(SUBDIRS) @echo "==> Enter subdirectory $(i)" - @cd ${i}; make $@ + @cd ${i}; $(MAKE) $@ @echo "<== Leave subdirectory $(i)" .endfor install: .for i in $(SUBDIRS) @echo "==> Enter subdirectory $(i)" - @cd ${i}; make $@ + @cd ${i}; $(MAKE) $@ @echo "<== Leave subdirectory $(i)" .endfor clean: .for i in $(SUBDIRS) @echo "==> Enter subdirectory $(i)" - @cd ${i}; make $@ + @cd ${i}; $(MAKE) $@ @echo "<== Leave subdirectory $(i)" .endfor