3 # Copyright (C) Dean Camera, 2011.
5 # dean [at] fourwalledcubicle [dot] com
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++
15 all: begin compile clean end
18 @echo Executing build test "SingleUSBModeTest".
22 @echo Build test "SingleUSBModeTest" complete.
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
31 $(MAKE) -f makefile.xmega clean -s
32 $(MAKE) -f makefile.xmega LUFA_OPTS='-D USB_DEVICE_ONLY' -s
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
40 $(MAKE) -f makefile.avr8 clean -s
41 $(MAKE) -f makefile.xmega clean -s
42 $(MAKE) -f makefile.uc3 clean -s