Mark build test makefiles as being incompatible with parallel make builds, as they...
[pub/USBasp.git] / BuildTests / SingleUSBModeTest / makefile.test
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 # LUFA Project Makefile.
10 # --------------------------------------
11
12 MCU =
13 ARCH =
14 BOARD = NONE
15 F_CPU = $(F_USB)
16
17 ifeq ($(ARCH), AVR8)
18 F_USB = 8000000
19 else ifeq ($(ARCH), XMEGA)
20 F_USB = 48000000
21 else ifeq ($(ARCH), UC3)
22 F_USB = 48000000
23 endif
24
25 OPTIMIZATION = 1
26 TARGET = Test
27 SRC = Test.c Dummy.S $(LUFA_SRC_USB)
28 LUFA_PATH = ../../LUFA/
29 CC_FLAGS =
30 # TODO: Add warnings and set warnings as errors
31
32 # Include LUFA build script makefiles
33 include $(LUFA_PATH)/Build/lufa.sources.in
34 include $(LUFA_PATH)/Build/lufa.build.in