Add tag for the 120219 release.
[pub/USBasp.git] / BuildTests / ModuleTest / 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 "ModuleTest".
17 @echo
18
19 $(MAKE) -f makefile.avr8 clean
20 $(MAKE) -f makefile.avr8
21
22 $(MAKE) -f makefile.xmega clean
23 $(MAKE) -f makefile.xmega
24
25 $(MAKE) -f makefile.uc3 clean
26 $(MAKE) -f makefile.uc3
27
28 @echo Build test "ModuleTest" complete.
29 @echo
30
31 clean:
32 $(MAKE) -f makefile.avr8 clean
33 $(MAKE) -f makefile.xmega clean
34 $(MAKE) -f makefile.uc3 clean
35
36 %:
37