Change over instances of "make" in the makefiles to "$(MAKE)" to allow for the make tool to be overridden.

This commit is contained in:
Dean Camera 2010-05-07 07:11:25 +00:00
parent a9e0935a90
commit e331b531c6
78 changed files with 265 additions and 265 deletions

View file

@ -18,9 +18,9 @@ all:
%:
@echo Executing \"make $@\" on all LUFA library elements.
@echo
make -C LUFA $@ -s
make -C Demos $@ -s
make -C Projects $@ -s
make -C Bootloaders $@ -s
$(MAKE) -C LUFA $@ -s
$(MAKE) -C Demos $@ -s
$(MAKE) -C Projects $@ -s
$(MAKE) -C Bootloaders $@ -s
@echo
@echo LUFA \"make $@\" operation complete.