Switch over Demos, Bootloaders and Projects to the new and improved build system.
[pub/USBasp.git] / Demos / Device / LowLevel / makefile
1 #
2 # LUFA Library
3 # Copyright (C) Dean Camera, 2012.
4 #
5 # dean [at] fourwalledcubicle [dot] com
6 # www.lufa-lib.org
7 #
8
9 # Makefile to build all the LUFA Device Demos. Call with "make all" to
10 # rebuild all Device demos.
11
12 # Projects are pre-cleaned before each one is built, to ensure any
13 # custom LUFA library build options are reflected in the compiled
14 # code.
15
16 all:
17 $(MAKE) -s -C AudioInput clean all
18 $(MAKE) -s -C AudioOutput clean all
19 $(MAKE) -s -C DualVirtualSerial clean all
20 $(MAKE) -s -C GenericHID clean all
21 $(MAKE) -s -C Joystick clean all
22 $(MAKE) -s -C Keyboard clean all
23 $(MAKE) -s -C KeyboardMouse clean all
24 $(MAKE) -s -C MassStorage clean all
25 $(MAKE) -s -C MIDI clean all
26 $(MAKE) -s -C Mouse clean all
27 $(MAKE) -s -C RNDISEthernet clean all
28 $(MAKE) -s -C VirtualSerial clean all
29
30 %:
31 $(MAKE) -s -C AudioInput $@
32 $(MAKE) -s -C AudioOutput $@
33 $(MAKE) -s -C DualVirtualSerial $@
34 $(MAKE) -s -C GenericHID $@
35 $(MAKE) -s -C Joystick $@
36 $(MAKE) -s -C Keyboard $@
37 $(MAKE) -s -C KeyboardMouse $@
38 $(MAKE) -s -C MassStorage $@
39 $(MAKE) -s -C MIDI $@
40 $(MAKE) -s -C Mouse $@
41 $(MAKE) -s -C RNDISEthernet $@
42 $(MAKE) -s -C VirtualSerial $@
43