Remove space padding on the current time when automatically generating AVR Studio...
[pub/USBasp.git] / BuildTests / SingleUSBModeTest / makefile
1 #
2 # LUFA Library
3 # Copyright (C) Dean Camera, 2012.
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) -s -f makefile.test clean elf ARCH=AVR8 MCU=at90usb1287 CCFLAGS='-D USB_DEVICE_ONLY'
27 $(MAKE) -s -f makefile.test clean elf ARCH=AVR8 MCU=at90usb1287 CCFLAGS='-D USB_HOST_ONLY'
28
29 $(MAKE) -s -f makefile.test clean elf ARCH=XMEGA MCU=atxmega128a1u CCFLAGS='-D USB_DEVICE_ONLY'
30
31 $(MAKE) -s -f makefile.test clean elf ARCH=UC3 MCU=uc3a0256 CCFLAGS='-D USB_DEVICE_ONLY'
32 $(MAKE) -s -f makefile.test clean elf ARCH=UC3 MCU=uc3a0256 CCFLAGS='-D USB_HOST_ONLY'
33
34 clean:
35 $(MAKE) -s -f makefile.test clean ARCH=AVR8
36 $(MAKE) -s -f makefile.test clean ARCH=XMEGA
37 $(MAKE) -s -f makefile.test clean ARCH=UC3
38
39 %:
40