aboutsummaryrefslogtreecommitdiffstats
path: root/Demos/Host/LowLevel/makefile
blob: 6657c80b1d78cc6b5f263377577fa0dcb7f2d28d (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
#
#             LUFA Library
#     Copyright (C) Dean Camera, 2010.
#
#  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 GenericHIDHost clean
	$(MAKE) -C GenericHIDHost all

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

	$(MAKE) -C KeyboardHost clean
	$(MAKE) -C KeyboardHost 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 GenericHIDHost $@
	$(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 $@