From e331b531c6e6d93eb0eee42b9002074e8090ad18 Mon Sep 17 00:00:00 2001 From: Dean Camera Date: Fri, 7 May 2010 07:11:25 +0000 Subject: Change over instances of "make" in the makefiles to "$(MAKE)" to allow for the make tool to be overridden. --- Demos/Host/LowLevel/GenericHIDHost/makefile | 2 +- .../Host/LowLevel/JoystickHostWithParser/makefile | 2 +- Demos/Host/LowLevel/KeyboardHost/makefile | 2 +- .../Host/LowLevel/KeyboardHostWithParser/makefile | 2 +- Demos/Host/LowLevel/MIDIHost/makefile | 2 +- Demos/Host/LowLevel/MassStorageHost/makefile | 2 +- Demos/Host/LowLevel/MouseHost/makefile | 2 +- Demos/Host/LowLevel/MouseHostWithParser/makefile | 2 +- Demos/Host/LowLevel/PrinterHost/makefile | 2 +- Demos/Host/LowLevel/RNDISEthernetHost/makefile | 2 +- Demos/Host/LowLevel/StillImageHost/makefile | 2 +- Demos/Host/LowLevel/VirtualSerialHost/makefile | 2 +- Demos/Host/LowLevel/makefile | 68 +++++++++++----------- 13 files changed, 46 insertions(+), 46 deletions(-) (limited to 'Demos/Host/LowLevel') diff --git a/Demos/Host/LowLevel/GenericHIDHost/makefile b/Demos/Host/LowLevel/GenericHIDHost/makefile index 4af4d5e4f..12a354223 100644 --- a/Demos/Host/LowLevel/GenericHIDHost/makefile +++ b/Demos/Host/LowLevel/GenericHIDHost/makefile @@ -499,7 +499,7 @@ sizeafter: 2>/dev/null; echo; fi $(LUFA_PATH)/LUFA/LUFA_Events.lst: - @make -C $(LUFA_PATH)/LUFA/ LUFA_Events.lst + @$(MAKE) -C $(LUFA_PATH)/LUFA/ LUFA_Events.lst checkinvalidevents: $(LUFA_PATH)/LUFA/LUFA_Events.lst @echo diff --git a/Demos/Host/LowLevel/JoystickHostWithParser/makefile b/Demos/Host/LowLevel/JoystickHostWithParser/makefile index 65ed8ab91..f6d2756c5 100644 --- a/Demos/Host/LowLevel/JoystickHostWithParser/makefile +++ b/Demos/Host/LowLevel/JoystickHostWithParser/makefile @@ -500,7 +500,7 @@ sizeafter: 2>/dev/null; echo; fi $(LUFA_PATH)/LUFA/LUFA_Events.lst: - @make -C $(LUFA_PATH)/LUFA/ LUFA_Events.lst + @$(MAKE) -C $(LUFA_PATH)/LUFA/ LUFA_Events.lst checkinvalidevents: $(LUFA_PATH)/LUFA/LUFA_Events.lst @echo diff --git a/Demos/Host/LowLevel/KeyboardHost/makefile b/Demos/Host/LowLevel/KeyboardHost/makefile index 15f19a7c5..0fdbedf5f 100644 --- a/Demos/Host/LowLevel/KeyboardHost/makefile +++ b/Demos/Host/LowLevel/KeyboardHost/makefile @@ -498,7 +498,7 @@ sizeafter: 2>/dev/null; echo; fi $(LUFA_PATH)/LUFA/LUFA_Events.lst: - @make -C $(LUFA_PATH)/LUFA/ LUFA_Events.lst + @$(MAKE) -C $(LUFA_PATH)/LUFA/ LUFA_Events.lst checkinvalidevents: $(LUFA_PATH)/LUFA/LUFA_Events.lst @echo diff --git a/Demos/Host/LowLevel/KeyboardHostWithParser/makefile b/Demos/Host/LowLevel/KeyboardHostWithParser/makefile index f66ee9b8e..5c4ae6919 100644 --- a/Demos/Host/LowLevel/KeyboardHostWithParser/makefile +++ b/Demos/Host/LowLevel/KeyboardHostWithParser/makefile @@ -500,7 +500,7 @@ sizeafter: 2>/dev/null; echo; fi $(LUFA_PATH)/LUFA/LUFA_Events.lst: - @make -C $(LUFA_PATH)/LUFA/ LUFA_Events.lst + @$(MAKE) -C $(LUFA_PATH)/LUFA/ LUFA_Events.lst checkinvalidevents: $(LUFA_PATH)/LUFA/LUFA_Events.lst @echo diff --git a/Demos/Host/LowLevel/MIDIHost/makefile b/Demos/Host/LowLevel/MIDIHost/makefile index 955dc81ad..2ae06ad48 100644 --- a/Demos/Host/LowLevel/MIDIHost/makefile +++ b/Demos/Host/LowLevel/MIDIHost/makefile @@ -498,7 +498,7 @@ sizeafter: 2>/dev/null; echo; fi $(LUFA_PATH)/LUFA/LUFA_Events.lst: - @make -C $(LUFA_PATH)/LUFA/ LUFA_Events.lst + @$(MAKE) -C $(LUFA_PATH)/LUFA/ LUFA_Events.lst checkinvalidevents: $(LUFA_PATH)/LUFA/LUFA_Events.lst @echo diff --git a/Demos/Host/LowLevel/MassStorageHost/makefile b/Demos/Host/LowLevel/MassStorageHost/makefile index 1031b0f3b..c6835a68c 100644 --- a/Demos/Host/LowLevel/MassStorageHost/makefile +++ b/Demos/Host/LowLevel/MassStorageHost/makefile @@ -500,7 +500,7 @@ sizeafter: 2>/dev/null; echo; fi $(LUFA_PATH)/LUFA/LUFA_Events.lst: - @make -C $(LUFA_PATH)/LUFA/ LUFA_Events.lst + @$(MAKE) -C $(LUFA_PATH)/LUFA/ LUFA_Events.lst checkinvalidevents: $(LUFA_PATH)/LUFA/LUFA_Events.lst @echo diff --git a/Demos/Host/LowLevel/MouseHost/makefile b/Demos/Host/LowLevel/MouseHost/makefile index 650559a70..293579776 100644 --- a/Demos/Host/LowLevel/MouseHost/makefile +++ b/Demos/Host/LowLevel/MouseHost/makefile @@ -498,7 +498,7 @@ sizeafter: 2>/dev/null; echo; fi $(LUFA_PATH)/LUFA/LUFA_Events.lst: - @make -C $(LUFA_PATH)/LUFA/ LUFA_Events.lst + @$(MAKE) -C $(LUFA_PATH)/LUFA/ LUFA_Events.lst checkinvalidevents: $(LUFA_PATH)/LUFA/LUFA_Events.lst @echo diff --git a/Demos/Host/LowLevel/MouseHostWithParser/makefile b/Demos/Host/LowLevel/MouseHostWithParser/makefile index 01aa8af70..66acc00b0 100644 --- a/Demos/Host/LowLevel/MouseHostWithParser/makefile +++ b/Demos/Host/LowLevel/MouseHostWithParser/makefile @@ -500,7 +500,7 @@ sizeafter: 2>/dev/null; echo; fi $(LUFA_PATH)/LUFA/LUFA_Events.lst: - @make -C $(LUFA_PATH)/LUFA/ LUFA_Events.lst + @$(MAKE) -C $(LUFA_PATH)/LUFA/ LUFA_Events.lst checkinvalidevents: $(LUFA_PATH)/LUFA/LUFA_Events.lst @echo diff --git a/Demos/Host/LowLevel/PrinterHost/makefile b/Demos/Host/LowLevel/PrinterHost/makefile index deb289d1f..84178d552 100644 --- a/Demos/Host/LowLevel/PrinterHost/makefile +++ b/Demos/Host/LowLevel/PrinterHost/makefile @@ -499,7 +499,7 @@ sizeafter: 2>/dev/null; echo; fi $(LUFA_PATH)/LUFA/LUFA_Events.lst: - @make -C $(LUFA_PATH)/LUFA/ LUFA_Events.lst + @$(MAKE) -C $(LUFA_PATH)/LUFA/ LUFA_Events.lst checkinvalidevents: $(LUFA_PATH)/LUFA/LUFA_Events.lst @echo diff --git a/Demos/Host/LowLevel/RNDISEthernetHost/makefile b/Demos/Host/LowLevel/RNDISEthernetHost/makefile index 81ee8fd3a..a072bf4a8 100644 --- a/Demos/Host/LowLevel/RNDISEthernetHost/makefile +++ b/Demos/Host/LowLevel/RNDISEthernetHost/makefile @@ -499,7 +499,7 @@ sizeafter: 2>/dev/null; echo; fi $(LUFA_PATH)/LUFA/LUFA_Events.lst: - @make -C $(LUFA_PATH)/LUFA/ LUFA_Events.lst + @$(MAKE) -C $(LUFA_PATH)/LUFA/ LUFA_Events.lst checkinvalidevents: $(LUFA_PATH)/LUFA/LUFA_Events.lst @echo diff --git a/Demos/Host/LowLevel/StillImageHost/makefile b/Demos/Host/LowLevel/StillImageHost/makefile index dca7b12e0..861e7ef0b 100644 --- a/Demos/Host/LowLevel/StillImageHost/makefile +++ b/Demos/Host/LowLevel/StillImageHost/makefile @@ -499,7 +499,7 @@ sizeafter: 2>/dev/null; echo; fi $(LUFA_PATH)/LUFA/LUFA_Events.lst: - @make -C $(LUFA_PATH)/LUFA/ LUFA_Events.lst + @$(MAKE) -C $(LUFA_PATH)/LUFA/ LUFA_Events.lst checkinvalidevents: $(LUFA_PATH)/LUFA/LUFA_Events.lst @echo diff --git a/Demos/Host/LowLevel/VirtualSerialHost/makefile b/Demos/Host/LowLevel/VirtualSerialHost/makefile index f0798d597..a4bde214a 100644 --- a/Demos/Host/LowLevel/VirtualSerialHost/makefile +++ b/Demos/Host/LowLevel/VirtualSerialHost/makefile @@ -498,7 +498,7 @@ sizeafter: 2>/dev/null; echo; fi $(LUFA_PATH)/LUFA/LUFA_Events.lst: - @make -C $(LUFA_PATH)/LUFA/ LUFA_Events.lst + @$(MAKE) -C $(LUFA_PATH)/LUFA/ LUFA_Events.lst checkinvalidevents: $(LUFA_PATH)/LUFA/LUFA_Events.lst @echo diff --git a/Demos/Host/LowLevel/makefile b/Demos/Host/LowLevel/makefile index 8c8f676db..2a1caed5e 100644 --- a/Demos/Host/LowLevel/makefile +++ b/Demos/Host/LowLevel/makefile @@ -14,49 +14,49 @@ # code. all: - make -C GenericHIDHost clean - make -C GenericHIDHost all + $(MAKE) -C GenericHIDHost clean + $(MAKE) -C GenericHIDHost 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 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 StillImageHost clean - make -C StillImageHost all + $(MAKE) -C StillImageHost clean + $(MAKE) -C StillImageHost all - make -C RNDISEthernetHost clean - make -C RNDISEthernetHost all + $(MAKE) -C RNDISEthernetHost clean + $(MAKE) -C RNDISEthernetHost all - make -C VirtualSerialHost clean - make -C VirtualSerialHost all + $(MAKE) -C VirtualSerialHost clean + $(MAKE) -C VirtualSerialHost all %: - make -C GenericHIDHost $@ - 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 StillImageHost $@ - make -C RNDISEthernetHost $@ - make -C VirtualSerialHost $@ + $(MAKE) -C GenericHIDHost $@ + $(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 StillImageHost $@ + $(MAKE) -C RNDISEthernetHost $@ + $(MAKE) -C VirtualSerialHost $@ -- cgit v1.2.3