Fixed Endpoint_Write_Control_Stream_* functions not sending a terminating IN when...
[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 CDCMouse clean
27 make -C CDCMouse all
28
29 make -C DualCDC clean
30 make -C DualCDC all
31
32 make -C GenericHID clean
33 make -C GenericHID all
34
35 make -C Joystick clean
36 make -C Joystick all
37
38 make -C Keyboard clean
39 make -C Keyboard all
40
41 make -C KeyboardMouse clean
42 make -C KeyboardMouse all
43
44 make -C MassStorage clean
45 make -C MassStorage all
46
47 make -C MassStorageKeyboard clean
48 make -C MassStorageKeyboard all
49
50 make -C MIDI clean
51 make -C MIDI all
52
53 make -C Mouse clean
54 make -C Mouse all
55
56 make -C RNDISEthernet clean
57 make -C RNDISEthernet all
58
59 %:
60 make -C AudioInput $@
61 make -C AudioOutput $@
62 make -C CDC $@
63 make -C CDCMouse $@
64 make -C DualCDC $@
65 make -C GenericHID $@
66 make -C Joystick $@
67 make -C Keyboard $@
68 make -C KeyboardMouse $@
69 make -C MassStorage $@
70 make -C MassStorageKeyboard $@
71 make -C MIDI $@
72 make -C Mouse $@
73 make -C RNDISEthernet $@