aboutsummaryrefslogtreecommitdiffstats
path: root/Demos/Host/ClassDriver/makefile
blob: ace187471de1f751a7f191150ed780c045c1183f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
#
#             LUFA Library
#     Copyright (C) Dean Camera, 2012.
#
#  dean [at] fourwalledcubicle [dot] com
#           www.lufa-lib.org
#

# Makefile to build all the LUFA Host Demos. Call with "make all" to
# rebuild all Host demos.

# Projects are pre-cleaned before each one is built, to ensure any
# custom LUFA library build options are reflected in the compiled
# code.

all:
	$(MAKE) -C AndroidAccessoryHost clean
	$(MAKE) -C AndroidAccessoryHost all

	$(MAKE) -C AudioInputHost clean
	$(MAKE) -C AudioInputHost all

	$(MAKE) -C AudioOutputHost clean
	$(MAKE) -C AudioOutputHost all

	$(MAKE) -C JoystickHostWithParser clean
	$(MAKE) -C JoystickHostWithParser all

	$(MAKE) -C KeyboardHost clean
	$(MAKE) -C KeyboardHost all

	$(MAKE) -C KeyboardHostWithParser clean
	$(MAKE) -C KeyboardHostWithParser all

	$(MAKE) -C MassStorageHost clean
	$(MAKE) -C MassStorageHost all

	$(MAKE) -C MIDIHost clean
	$(MAKE) -C MIDIHost all

	$(MAKE) -C MouseHost clean
	$(MAKE) -C MouseHost all

	$(MAKE) -C MouseHostWithParser clean
	$(MAKE) -C MouseHostWithParser all

	$(MAKE) -C PrinterHost clean
	$(MAKE) -C PrinterHost all

	$(MAKE) -C RNDISEthernetHost clean
	$(MAKE) -C RNDISEthernetHost all

	$(MAKE) -C StillImageHost clean
	$(MAKE) -C StillImageHost all

	$(MAKE) -C VirtualSerialHost clean
	$(MAKE) -C VirtualSerialHost all

%:
	$(MAKE) -C AndroidAccessoryHost $@
	$(MAKE) -C AudioInputHost $@
	$(MAKE) -C AudioOutputHost $@
	$(MAKE) -C JoystickHostWithParser $@
	$(MAKE) -C KeyboardHost $@
	$(MAKE) -C KeyboardHostWithParser $@
	$(MAKE) -C MassStorageHost $@
	$(MAKE) -C MIDIHost $@
	$(MAKE) -C MouseHost $@
	$(MAKE) -C MouseHostWithParser $@
	$(MAKE) -C PrinterHost $@
	$(MAKE) -C RNDISEthernetHost $@
	$(MAKE) -C StillImageHost $@
	$(MAKE) -C VirtualSerialHost $@