Switch over Demos, Bootloaders and Projects to the new and improved build system.
[pub/USBasp.git] / Demos / Device / LowLevel / DualVirtualSerial / 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 # LUFA Project Makefile.
10 # --------------------------------------
11
12 MCU = at90usb1287
13 ARCH = AVR8
14 BOARD = USBKEY
15 F_CPU = 8000000
16 F_USB = $(F_CPU)
17 OPTIMIZATION = s
18 TARGET = DualVirtualSerial
19 SRC = $(TARGET).c Descriptors.c $(LUFA_SRC_USB)
20 LUFA_PATH = ../../../../LUFA/
21 CC_FLAGS = -DUSE_LUFA_CONFIG_HEADER -IConfig/
22 LD_FLAGS =
23
24 # Default target
25 all:
26
27 # Include LUFA build script makefiles
28 include $(LUFA_PATH)/Build/lufa.core.in
29 include $(LUFA_PATH)/Build/lufa.sources.in
30 include $(LUFA_PATH)/Build/lufa.build.in
31 include $(LUFA_PATH)/Build/lufa.doxygen.in
32 include $(LUFA_PATH)/Build/lufa.dfu.in
33 include $(LUFA_PATH)/Build/lufa.avrdude.in