Move new Class Driver powered demos to a new ClassDriver subdirectory, re-add old...
[pub/USBasp.git] / Demos / Device / ClassDriver / makefile
1 #
2 # LUFA Library
3 # Copyright (C) Dean Camera, 2009.
4 #
5 # dean [at] fourwalledcubicle [dot] com
6 # www.fourwalledcubicle.com
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 -C AudioInput clean
18 make -C AudioInput all
19
20 make -C AudioOutput clean
21 make -C AudioOutput all
22
23 make -C CDC clean
24 make -C CDC all
25
26 make -C DualCDC clean
27 make -C DualCDC all
28
29 make -C GenericHID clean
30 make -C GenericHID all
31
32 make -C Joystick clean
33 make -C Joystick all
34
35 make -C Keyboard clean
36 make -C Keyboard all
37
38 make -C KeyboardMouse clean
39 make -C KeyboardMouse all
40
41 make -C MassStorage clean
42 make -C MassStorage all
43
44 make -C MIDI clean
45 make -C MIDI all
46
47 make -C Mouse clean
48 make -C Mouse all
49
50 make -C RNDISEthernet clean
51 make -C RNDISEthernet all
52
53 make -C USBtoSerial clean
54 make -C USBtoSerial all
55
56 %:
57 make -C AudioInput $@
58 make -C AudioOutput $@
59 make -C CDC $@
60 make -C DualCDC $@
61 make -C GenericHID $@
62 make -C Joystick $@
63 make -C Keyboard $@
64 make -C KeyboardMouse $@
65 make -C MassStorage $@
66 make -C MIDI $@
67 make -C Mouse $@
68 make -C RNDISEthernet $@
69 make -C USBtoSerial $@