Fix incorrect Dataflash header file included for the STK525 inside Atmel Studio.
[pub/USBasp.git] / BuildTests / BoardDriverTest / makefile.test
1 #
2 # LUFA Library
3 # Copyright (C) Dean Camera, 2013.
4 #
5 # dean [at] fourwalledcubicle [dot] com
6 # www.lufa-lib.org
7 #
8 # --------------------------------------
9 # LUFA Project Makefile.
10 # --------------------------------------
11
12 # Run "make help" for target help.
13
14 MCU =
15 ARCH =
16 BOARD =
17 F_CPU = $(F_USB)
18 F_USB = 8000000
19 OPTIMIZATION = 1
20 TARGET = Test
21 SRC = $(TARGET).c
22 LUFA_PATH = ../../LUFA
23 CC_FLAGS = -Werror
24 DEBUG_LEVEL = 0
25
26 # Include LUFA build script makefiles
27 include $(LUFA_PATH)/Build/lufa_build.mk