Add build tests to verify correct compilation of as many modules as possible under...
[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 $(MAKE) -f makefile.avr8 clean
17 $(MAKE) -f makefile.avr8
18
19 $(MAKE) -f makefile.xmega clean
20 $(MAKE) -f makefile.xmega
21
22 $(MAKE) -f makefile.uc3 clean
23 $(MAKE) -f makefile.uc3
24
25 clean:
26 $(MAKE) -f makefile.avr8 clean
27 $(MAKE) -f makefile.xmega clean
28 $(MAKE) -f makefile.uc3 clean
29
30 %:
31