aboutsummaryrefslogtreecommitdiffstats
path: root/Demos/Device/LowLevel/makefile
diff options
context:
space:
mode:
authorDean Camera <dean@fourwalledcubicle.com>2010-05-07 07:11:25 +0000
committerDean Camera <dean@fourwalledcubicle.com>2010-05-07 07:11:25 +0000
commite331b531c6e6d93eb0eee42b9002074e8090ad18 (patch)
tree07828972cd7a3fde174c0da3bbcc77dce5c821a7 /Demos/Device/LowLevel/makefile
parenta9e0935a90346beb0c981924becc1f55d969a08b (diff)
downloadlufa-e331b531c6e6d93eb0eee42b9002074e8090ad18.tar.gz
lufa-e331b531c6e6d93eb0eee42b9002074e8090ad18.tar.bz2
lufa-e331b531c6e6d93eb0eee42b9002074e8090ad18.zip
Change over instances of "make" in the makefiles to "$(MAKE)" to allow for the make tool to be overridden.
Diffstat (limited to 'Demos/Device/LowLevel/makefile')
-rw-r--r--Demos/Device/LowLevel/makefile72
1 files changed, 36 insertions, 36 deletions
diff --git a/Demos/Device/LowLevel/makefile b/Demos/Device/LowLevel/makefile
index 83e99a9a6..ed0dc3f36 100644
--- a/Demos/Device/LowLevel/makefile
+++ b/Demos/Device/LowLevel/makefile
@@ -14,52 +14,52 @@
# code.
all:
- make -C AudioInput clean
- make -C AudioInput all
+ $(MAKE) -C AudioInput clean
+ $(MAKE) -C AudioInput all
- make -C AudioOutput clean
- make -C AudioOutput all
+ $(MAKE) -C AudioOutput clean
+ $(MAKE) -C AudioOutput all
- make -C DualVirtualSerial clean
- make -C DualVirtualSerial all
+ $(MAKE) -C DualVirtualSerial clean
+ $(MAKE) -C DualVirtualSerial all
- make -C GenericHID clean
- make -C GenericHID all
+ $(MAKE) -C GenericHID clean
+ $(MAKE) -C GenericHID all
- make -C Joystick clean
- make -C Joystick all
+ $(MAKE) -C Joystick clean
+ $(MAKE) -C Joystick all
- make -C Keyboard clean
- make -C Keyboard all
+ $(MAKE) -C Keyboard clean
+ $(MAKE) -C Keyboard all
- make -C KeyboardMouse clean
- make -C KeyboardMouse all
+ $(MAKE) -C KeyboardMouse clean
+ $(MAKE) -C KeyboardMouse all
- make -C MassStorage clean
- make -C MassStorage all
+ $(MAKE) -C MassStorage clean
+ $(MAKE) -C MassStorage all
- make -C MIDI clean
- make -C MIDI all
+ $(MAKE) -C MIDI clean
+ $(MAKE) -C MIDI all
- make -C Mouse clean
- make -C Mouse all
+ $(MAKE) -C Mouse clean
+ $(MAKE) -C Mouse all
- make -C RNDISEthernet clean
- make -C RNDISEthernet all
+ $(MAKE) -C RNDISEthernet clean
+ $(MAKE) -C RNDISEthernet all
- make -C VirtualSerial clean
- make -C VirtualSerial all
+ $(MAKE) -C VirtualSerial clean
+ $(MAKE) -C VirtualSerial all
%:
- make -C AudioInput $@
- make -C AudioOutput $@
- make -C DualVirtualSerial $@
- make -C GenericHID $@
- make -C Joystick $@
- make -C Keyboard $@
- make -C KeyboardMouse $@
- make -C MassStorage $@
- make -C MIDI $@
- make -C Mouse $@
- make -C RNDISEthernet $@
- make -C VirtualSerial $@
+ $(MAKE) -C AudioInput $@
+ $(MAKE) -C AudioOutput $@
+ $(MAKE) -C DualVirtualSerial $@
+ $(MAKE) -C GenericHID $@
+ $(MAKE) -C Joystick $@
+ $(MAKE) -C Keyboard $@
+ $(MAKE) -C KeyboardMouse $@
+ $(MAKE) -C MassStorage $@
+ $(MAKE) -C MIDI $@
+ $(MAKE) -C Mouse $@
+ $(MAKE) -C RNDISEthernet $@
+ $(MAKE) -C VirtualSerial $@