Add new error condition to the HID Report Parser for when a report is parsed but...
[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 MassStorageKeyboard clean
45 make -C MassStorageKeyboard all
46
47 make -C MIDI clean
48 make -C MIDI all
49
50 make -C Mouse clean
51 make -C Mouse all
52
53 make -C RNDISEthernet clean
54 make -C RNDISEthernet all
55
56 make -C USBtoSerial clean
57 make -C USBtoSerial all
58
59 %:
60 make -C AudioInput $@
61 make -C AudioOutput $@
62 make -C CDC $@
63 make -C DualCDC $@
64 make -C GenericHID $@
65 make -C Joystick $@
66 make -C Keyboard $@
67 make -C KeyboardMouse $@
68 make -C MassStorage $@
69 make -C MassStorageKeyboard $@
70 make -C MIDI $@
71 make -C Mouse $@
72 make -C RNDISEthernet $@
73 make -C USBtoSerial $@