aboutsummaryrefslogtreecommitdiff
path: root/Demos/Device/LowLevel/makefile
diff options
context:
space:
mode:
authorDean <Dean@d5102386-fcda-11dd-9fdb-3debd5008f28>2012-06-01 22:32:43 +0000
committerDean <Dean@d5102386-fcda-11dd-9fdb-3debd5008f28>2012-06-01 22:32:43 +0000
commita0a30d5afb506b55655de244f1c7f6b1857279d8 (patch)
tree9a4fe8e631f6d4ec98942b4e7f1dc2349d25283f /Demos/Device/LowLevel/makefile
parente9e038c0481fce5dec33572801d450c4d0c73aef (diff)
Switch over Demos, Bootloaders and Projects to the new and improved build system.
git-svn-id: http://lufa-lib.googlecode.com/svn/trunk@2264 d5102386-fcda-11dd-9fdb-3debd5008f28
Diffstat (limited to 'Demos/Device/LowLevel/makefile')
-rw-r--r--Demos/Device/LowLevel/makefile71
1 files changed, 24 insertions, 47 deletions
diff --git a/Demos/Device/LowLevel/makefile b/Demos/Device/LowLevel/makefile
index 3a5ddc3a..85c86058 100644
--- a/Demos/Device/LowLevel/makefile
+++ b/Demos/Device/LowLevel/makefile
@@ -14,53 +14,30 @@
# code.
all:
- $(MAKE) -C AudioInput clean
- $(MAKE) -C AudioInput all
-
- $(MAKE) -C AudioOutput clean
- $(MAKE) -C AudioOutput all
-
- $(MAKE) -C DualVirtualSerial clean
- $(MAKE) -C DualVirtualSerial all
-
- $(MAKE) -C GenericHID clean
- $(MAKE) -C GenericHID all
-
- $(MAKE) -C Joystick clean
- $(MAKE) -C Joystick all
-
- $(MAKE) -C Keyboard clean
- $(MAKE) -C Keyboard all
-
- $(MAKE) -C KeyboardMouse clean
- $(MAKE) -C KeyboardMouse all
-
- $(MAKE) -C MassStorage clean
- $(MAKE) -C MassStorage all
-
- $(MAKE) -C MIDI clean
- $(MAKE) -C MIDI all
-
- $(MAKE) -C Mouse clean
- $(MAKE) -C Mouse all
-
- $(MAKE) -C RNDISEthernet clean
- $(MAKE) -C RNDISEthernet all
-
- $(MAKE) -C VirtualSerial clean
- $(MAKE) -C VirtualSerial all
+ $(MAKE) -s -C AudioInput clean all
+ $(MAKE) -s -C AudioOutput clean all
+ $(MAKE) -s -C DualVirtualSerial clean all
+ $(MAKE) -s -C GenericHID clean all
+ $(MAKE) -s -C Joystick clean all
+ $(MAKE) -s -C Keyboard clean all
+ $(MAKE) -s -C KeyboardMouse clean all
+ $(MAKE) -s -C MassStorage clean all
+ $(MAKE) -s -C MIDI clean all
+ $(MAKE) -s -C Mouse clean all
+ $(MAKE) -s -C RNDISEthernet clean all
+ $(MAKE) -s -C VirtualSerial clean 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) -s -C AudioInput $@
+ $(MAKE) -s -C AudioOutput $@
+ $(MAKE) -s -C DualVirtualSerial $@
+ $(MAKE) -s -C GenericHID $@
+ $(MAKE) -s -C Joystick $@
+ $(MAKE) -s -C Keyboard $@
+ $(MAKE) -s -C KeyboardMouse $@
+ $(MAKE) -s -C MassStorage $@
+ $(MAKE) -s -C MIDI $@
+ $(MAKE) -s -C Mouse $@
+ $(MAKE) -s -C RNDISEthernet $@
+ $(MAKE) -s -C VirtualSerial $@