Alter the bootloader section sizes to all be 8KB, to be in line with the default...
[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: begin compile clean end
16
17 begin:
18 @echo Executing build test "SingleUSBModeTest".
19 @echo
20
21 end:
22 @echo Build test "SingleUSBModeTest" complete.
23 @echo
24
25 compile:
26 $(MAKE) -f makefile.avr8 clean -s
27 $(MAKE) -f makefile.avr8 LUFA_OPTS='-D USB_DEVICE_ONLY' -s
28 $(MAKE) -f makefile.avr8 clean -s
29 $(MAKE) -f makefile.avr8 LUFA_OPTS='-D USB_HOST_ONLY' -s
30
31 $(MAKE) -f makefile.xmega clean -s
32 $(MAKE) -f makefile.xmega LUFA_OPTS='-D USB_DEVICE_ONLY' -s
33
34 $(MAKE) -f makefile.uc3 clean -s
35 $(MAKE) -f makefile.uc3 LUFA_OPTS='-D USB_DEVICE_ONLY' -s
36 $(MAKE) -f makefile.uc3 clean -s
37 $(MAKE) -f makefile.uc3 LUFA_OPTS='-D USB_HOST_ONLY' -s
38
39 clean:
40 $(MAKE) -f makefile.avr8 clean -s
41 $(MAKE) -f makefile.xmega clean -s
42 $(MAKE) -f makefile.uc3 clean -s
43
44 %:
45