Use $(MAKE) when invoking make from make.

Without this, things like MAKEFLAGS=-j4 can't work.
This commit is contained in:
Carl Worth 2009-11-12 22:00:51 -08:00
parent c3c0966521
commit 184c327692

View file

@ -1,5 +1,5 @@
all:
make -C .. all
$(MAKE) -C .. all
clean:
make -C .. clean
$(MAKE) -C .. clean