aboutsummaryrefslogtreecommitdiff
path: root/Demos/Host/ClassDriver/makefile
diff options
context:
space:
mode:
authorDean <Dean@d5102386-fcda-11dd-9fdb-3debd5008f28>2010-05-07 07:11:25 +0000
committerDean <Dean@d5102386-fcda-11dd-9fdb-3debd5008f28>2010-05-07 07:11:25 +0000
commit1acf6dfebeef8112b7df381b71253cebc75c16f3 (patch)
tree07828972cd7a3fde174c0da3bbcc77dce5c821a7 /Demos/Host/ClassDriver/makefile
parent791588dba9d6a880345dcce4e5ab7fa98d47e8c7 (diff)
Change over instances of "make" in the makefiles to "$(MAKE)" to allow for the make tool to be overridden.
git-svn-id: http://lufa-lib.googlecode.com/svn/trunk@1247 d5102386-fcda-11dd-9fdb-3debd5008f28
Diffstat (limited to 'Demos/Host/ClassDriver/makefile')
-rw-r--r--Demos/Host/ClassDriver/makefile66
1 files changed, 33 insertions, 33 deletions
diff --git a/Demos/Host/ClassDriver/makefile b/Demos/Host/ClassDriver/makefile
index 2b69bdd8..e1c22d35 100644
--- a/Demos/Host/ClassDriver/makefile
+++ b/Demos/Host/ClassDriver/makefile
@@ -14,48 +14,48 @@
# code.
all:
- make -C JoystickHostWithParser clean
- make -C JoystickHostWithParser all
+ $(MAKE) -C JoystickHostWithParser clean
+ $(MAKE) -C JoystickHostWithParser all
- make -C KeyboardHost clean
- make -C KeyboardHost all
+ $(MAKE) -C KeyboardHost clean
+ $(MAKE) -C KeyboardHost all
- make -C KeyboardHostWithParser clean
- make -C KeyboardHostWithParser all
+ $(MAKE) -C KeyboardHostWithParser clean
+ $(MAKE) -C KeyboardHostWithParser all
- make -C MassStorageHost clean
- make -C MassStorageHost all
+ $(MAKE) -C MassStorageHost clean
+ $(MAKE) -C MassStorageHost all
- make -C MIDIHost clean
- make -C MIDIHost all
+ $(MAKE) -C MIDIHost clean
+ $(MAKE) -C MIDIHost all
- make -C MouseHost clean
- make -C MouseHost all
+ $(MAKE) -C MouseHost clean
+ $(MAKE) -C MouseHost all
- make -C MouseHostWithParser clean
- make -C MouseHostWithParser all
+ $(MAKE) -C MouseHostWithParser clean
+ $(MAKE) -C MouseHostWithParser all
- make -C PrinterHost clean
- make -C PrinterHost all
+ $(MAKE) -C PrinterHost clean
+ $(MAKE) -C PrinterHost all
- make -C RNDISEthernetHost clean
- make -C RNDISEthernetHost all
+ $(MAKE) -C RNDISEthernetHost clean
+ $(MAKE) -C RNDISEthernetHost all
- make -C StillImageHost clean
- make -C StillImageHost all
+ $(MAKE) -C StillImageHost clean
+ $(MAKE) -C StillImageHost all
- make -C VirtualSerialHost clean
- make -C VirtualSerialHost all
+ $(MAKE) -C VirtualSerialHost clean
+ $(MAKE) -C VirtualSerialHost all
%:
- make -C JoystickHostWithParser $@
- make -C KeyboardHost $@
- make -C KeyboardHostWithParser $@
- make -C MassStorageHost $@
- make -C MIDIHost $@
- make -C MouseHost $@
- make -C MouseHostWithParser $@
- make -C PrinterHost $@
- make -C RNDISEthernetHost $@
- make -C StillImageHost $@
- make -C VirtualSerialHost $@
+ $(MAKE) -C JoystickHostWithParser $@
+ $(MAKE) -C KeyboardHost $@
+ $(MAKE) -C KeyboardHostWithParser $@
+ $(MAKE) -C MassStorageHost $@
+ $(MAKE) -C MIDIHost $@
+ $(MAKE) -C MouseHost $@
+ $(MAKE) -C MouseHostWithParser $@
+ $(MAKE) -C PrinterHost $@
+ $(MAKE) -C RNDISEthernetHost $@
+ $(MAKE) -C StillImageHost $@
+ $(MAKE) -C VirtualSerialHost $@