Replace architecture specific makefiles in the BuildTests with the new common build...
[pub/USBasp.git] / BuildTests / BoardDriverTest / 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 = at90usb1287
13 ARCH = AVR8
14 BOARD = NONE
15 F_CPU = 8000000
16 F_USB = $(F_CPU)
17 OPTIMIZATION = 1
18 TARGET = Test
19 SRC = $(TARGET).c
20 LUFA_PATH = ../../LUFA/
21 CC_FLAGS = -Werror
22
23 # Include LUFA build script makefiles
24 include $(LUFA_PATH)/Build/lufa.build.in