]> git.donarmstrong.com Git - qmk_firmware.git/blob - LUFA/Build/DMBS/Template/makefile
Squashed 'lib/lufa/' content from commit 385d40300
[qmk_firmware.git] / LUFA / Build / DMBS / Template / makefile
1 #
2 #            DMBS Build System
3 #     Released into the public domain.
4 #
5 #  dean [at] fourwalledcubicle [dot] com
6 #        www.fourwalledcubicle.com
7 #
8
9 # Run "make help" for target help.
10
11 MCU          = atmega128
12 ARCH         = AVR8
13 F_CPU        = 8000000
14 OPTIMIZATION = s
15 TARGET       = Template
16 SRC          = $(TARGET).c
17 CC_FLAGS     =
18 LD_FLAGS     =
19
20 # Default target
21 all:
22
23 # Include DMBS build script makefiles
24 DMBS_PATH   ?= ../DMBS
25 include $(DMBS_PATH)/core.mk
26 include $(DMBS_PATH)/gcc.mk
27 include $(DMBS_PATH)/cppcheck.mk
28 include $(DMBS_PATH)/doxygen.mk
29 include $(DMBS_PATH)/dfu.mk
30 include $(DMBS_PATH)/hid.mk
31 include $(DMBS_PATH)/avrdude.mk
32 include $(DMBS_PATH)/atprogram.mk