diff options
Diffstat (limited to 'lib/lufa/Projects/XPLAINBridge/makefile')
| -rw-r--r-- | lib/lufa/Projects/XPLAINBridge/makefile | 54 |
1 files changed, 0 insertions, 54 deletions
diff --git a/lib/lufa/Projects/XPLAINBridge/makefile b/lib/lufa/Projects/XPLAINBridge/makefile deleted file mode 100644 index 6c38917cb..000000000 --- a/lib/lufa/Projects/XPLAINBridge/makefile +++ /dev/null | |||
| @@ -1,54 +0,0 @@ | |||
| 1 | # | ||
| 2 | # LUFA Library | ||
| 3 | # Copyright (C) Dean Camera, 2017. | ||
| 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 | AVRISP_PATH = ../AVRISP-MKII | ||
| 15 | |||
| 16 | MCU = at90usb1287 | ||
| 17 | ARCH = AVR8 | ||
| 18 | BOARD = XPLAIN | ||
| 19 | F_CPU = 8000000 | ||
| 20 | F_USB = $(F_CPU) | ||
| 21 | OPTIMIZATION = s | ||
| 22 | TARGET = XPLAINBridge | ||
| 23 | SRC = $(TARGET).c Lib/SoftUART.c USARTDescriptors.c $(AVRISP_PATH)/AVRISPDescriptors.c $(AVRISP_PATH)/Lib/V2Protocol.c \ | ||
| 24 | $(AVRISP_PATH)/Lib/V2ProtocolParams.c $(AVRISP_PATH)/Lib/ISP/ISPProtocol.c $(AVRISP_PATH)/Lib/ISP/ISPTarget.c \ | ||
| 25 | $(AVRISP_PATH)/Lib/XPROG/XPROGProtocol.c $(AVRISP_PATH)/Lib/XPROG/XPROGTarget.c $(AVRISP_PATH)/Lib/XPROG/XMEGANVM.c \ | ||
| 26 | $(AVRISP_PATH)/Lib/XPROG/TINYNVM.c $(LUFA_SRC_USB) $(LUFA_SRC_USBCLASS) | ||
| 27 | LUFA_PATH = ../../LUFA | ||
| 28 | CC_FLAGS = -DUSE_LUFA_CONFIG_HEADER -IConfig/ -I$(AVRISP_PATH) | ||
| 29 | LD_FLAGS = | ||
| 30 | |||
| 31 | # Default target | ||
| 32 | all: | ||
| 33 | |||
| 34 | # Since this project borrows files from the AVRISP-MKII project which may also have an | ||
| 35 | # identical OBJDIR directory, we need to enforce the use of this project's object file | ||
| 36 | # directory as the one where the build object files are to be stored, by giving it a | ||
| 37 | # path relative to the current folder. | ||
| 38 | OBJDIR := ./obj | ||
| 39 | |||
| 40 | # Include LUFA-specific DMBS extension modules | ||
| 41 | DMBS_LUFA_PATH ?= $(LUFA_PATH)/Build/LUFA | ||
| 42 | include $(DMBS_LUFA_PATH)/lufa-sources.mk | ||
| 43 | include $(DMBS_LUFA_PATH)/lufa-gcc.mk | ||
| 44 | |||
| 45 | # Include common DMBS build system modules | ||
| 46 | DMBS_PATH ?= $(LUFA_PATH)/Build/DMBS/DMBS | ||
| 47 | include $(DMBS_PATH)/core.mk | ||
| 48 | include $(DMBS_PATH)/cppcheck.mk | ||
| 49 | include $(DMBS_PATH)/doxygen.mk | ||
| 50 | include $(DMBS_PATH)/dfu.mk | ||
| 51 | include $(DMBS_PATH)/gcc.mk | ||
| 52 | include $(DMBS_PATH)/hid.mk | ||
| 53 | include $(DMBS_PATH)/avrdude.mk | ||
| 54 | include $(DMBS_PATH)/atprogram.mk | ||
