Add tag for the 120219 release.
[pub/USBasp.git] / BuildTests / SingleUSBModeTest / makefile
1 #
2 # LUFA Library
3 # Copyright (C) Dean Camera, 2011.
4 #
5 # dean [at] fourwalledcubicle [dot] com
6 # www.lufa-lib.org
7 #
8
9 # Makefile for the module build test. This test
10 # attempts to build as many modules as possible
11 # under all supported architectures, and include
12 # all module headers in a simple C and C++
13 # application.
14
15 all:
16 @echo Executing build test "SingleUSBModeTest".
17 @echo
18
19 $(MAKE) -f makefile.avr8 clean
20 $(MAKE) -f makefile.avr8 LUFA_OPTS='-D USB_DEVICE_ONLY'
21 $(MAKE) -f makefile.avr8 clean
22 $(MAKE) -f makefile.avr8 LUFA_OPTS='-D USB_HOST_ONLY'
23
24 $(MAKE) -f makefile.xmega clean
25 $(MAKE) -f makefile.xmega LUFA_OPTS='-D USB_DEVICE_ONLY'
26
27 $(MAKE) -f makefile.uc3 clean
28 $(MAKE) -f makefile.uc3 LUFA_OPTS='-D USB_DEVICE_ONLY'
29 $(MAKE) -f makefile.uc3 clean
30 $(MAKE) -f makefile.uc3 LUFA_OPTS='-D USB_HOST_ONLY'
31
32 @echo Build test "SingleUSBModeTest" complete.
33 @echo
34
35 clean:
36 $(MAKE) -f makefile.avr8 clean
37 $(MAKE) -f makefile.xmega clean
38 $(MAKE) -f makefile.uc3 clean
39
40 %:
41