mirror of
https://github.com/zsa/qmk_firmware.git
synced 2026-05-04 06:33:03 +00:00
Change over instances of "make" in the makefiles to "$(MAKE)" to allow for the make tool to be overridden.
This commit is contained in:
8
makefile
8
makefile
@@ -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.
|
||||
|
||||
Reference in New Issue
Block a user