blob: aa8fa3696f9d4fef72c4f1328357820a6d2d5f84 (
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
|
#
# 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) -s -C AndroidAccessoryHost clean all
$(MAKE) -s -C AudioInputHost clean all
$(MAKE) -s -C AudioOutputHost clean all
$(MAKE) -s -C JoystickHostWithParser clean all
$(MAKE) -s -C KeyboardHost clean all
$(MAKE) -s -C KeyboardHostWithParser clean all
$(MAKE) -s -C MassStorageHost clean all
$(MAKE) -s -C MIDIHost clean all
$(MAKE) -s -C MouseHost clean all
$(MAKE) -s -C MouseHostWithParser clean all
$(MAKE) -s -C PrinterHost clean all
$(MAKE) -s -C RNDISEthernetHost clean all
$(MAKE) -s -C StillImageHost clean all
$(MAKE) -s -C VirtualSerialHost clean all
%:
$(MAKE) -s -C AndroidAccessoryHost $@
$(MAKE) -s -C AudioInputHost $@
$(MAKE) -s -C AudioOutputHost $@
$(MAKE) -s -C JoystickHostWithParser $@
$(MAKE) -s -C KeyboardHost $@
$(MAKE) -s -C KeyboardHostWithParser $@
$(MAKE) -s -C MassStorageHost $@
$(MAKE) -s -C MIDIHost $@
$(MAKE) -s -C MouseHost $@
$(MAKE) -s -C MouseHostWithParser $@
$(MAKE) -s -C PrinterHost $@
$(MAKE) -s -C RNDISEthernetHost $@
$(MAKE) -s -C StillImageHost $@
$(MAKE) -s -C VirtualSerialHost $@
|