Fixed interrupt driven HID device demos not clearing the interrupt flags in all circu...
[pub/USBasp.git] / Demos / 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 Demos. Call with "make all" to
10 # rebuild all 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 BluetoothHost clean
24 make -C BluetoothHost all
25
26 make -C CDC clean
27 make -C CDC all
28
29 make -C CDCHost clean
30 make -C CDCHost all
31
32 make -C DualCDC clean
33 make -C DualCDC all
34
35 make -C Joystick clean
36 make -C Joystick all
37
38 make -C KeyboardMouse clean
39 make -C KeyboardMouse all
40
41 make -C Keyboard clean
42 make -C Keyboard all
43
44 make -C KeyboardFullInt clean
45 make -C KeyboardFullInt all
46
47 make -C KeyboardViaInt clean
48 make -C KeyboardViaInt all
49
50 make -C KeyboardHost clean
51 make -C KeyboardHost all
52
53 make -C KeyboardHostWithParser clean
54 make -C KeyboardHostWithParser all
55
56 make -C KeyboardHostViaInt clean
57 make -C KeyboardHostViaInt all
58
59 make -C MassStorage clean
60 make -C MassStorage all
61
62 make -C MassStorageHost clean
63 make -C MassStorageHost all
64
65 make -C MIDI clean
66 make -C MIDI all
67
68 make -C Mouse clean
69 make -C Mouse all
70
71 make -C MouseFullInt clean
72 make -C MouseFullInt all
73
74 make -C MouseViaInt clean
75 make -C MouseViaInt all
76
77 make -C MouseHost clean
78 make -C MouseHost all
79
80 make -C MouseHostWithParser clean
81 make -C MouseHostWithParser all
82
83 make -C MouseHostViaInt clean
84 make -C MouseHostViaInt all
85
86 make -C RNDISEthernet clean
87 make -C RNDISEthernet all
88
89 make -C StillImageHost clean
90 make -C StillImageHost all
91
92 make -C TestApp clean
93 make -C TestApp all
94
95 make -C USBtoSerial clean
96 make -C USBtoSerial all
97
98 %:
99 make -C AudioInput $@
100 make -C AudioOutput $@
101 make -C BluetoothHost $@
102 make -C CDC $@
103 make -C CDCHost $@
104 make -C DualCDC $@
105 make -C Joystick $@
106 make -C KeyboardMouse $@
107 make -C Keyboard $@
108 make -C KeyboardFullInt $@
109 make -C KeyboardViaInt $@
110 make -C KeyboardHost $@
111 make -C KeyboardHostWithParser $@
112 make -C KeyboardHostViaInt $@
113 make -C MassStorage $@
114 make -C MassStorageHost $@
115 make -C MIDI $@
116 make -C Mouse $@
117 make -C MouseFullInt $@
118 make -C MouseViaInt $@
119 make -C MouseHost $@
120 make -C MouseHostWithParser $@
121 make -C MouseHostViaInt $@
122 make -C RNDISEthernet $@
123 make -C StillImageHost $@
124 make -C TestApp $@
125 make -C USBtoSerial $@