diff options
Diffstat (limited to 'lib/lufa/Demos/Device/Incomplete/TestAndMeasurement/makefile')
| -rw-r--r-- | lib/lufa/Demos/Device/Incomplete/TestAndMeasurement/makefile | 43 |
1 files changed, 43 insertions, 0 deletions
diff --git a/lib/lufa/Demos/Device/Incomplete/TestAndMeasurement/makefile b/lib/lufa/Demos/Device/Incomplete/TestAndMeasurement/makefile new file mode 100644 index 000000000..e0d89ccd7 --- /dev/null +++ b/lib/lufa/Demos/Device/Incomplete/TestAndMeasurement/makefile | |||
| @@ -0,0 +1,43 @@ | |||
| 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 | MCU = at90usb1287 | ||
| 15 | ARCH = AVR8 | ||
| 16 | BOARD = USBKEY | ||
| 17 | F_CPU = 8000000 | ||
| 18 | F_USB = $(F_CPU) | ||
| 19 | OPTIMIZATION = s | ||
| 20 | TARGET = TestAndMeasurement | ||
| 21 | SRC = $(TARGET).c Descriptors.c $(LUFA_SRC_USB) $(LUFA_SRC_USBCLASS) | ||
| 22 | LUFA_PATH = ../../../../LUFA | ||
| 23 | CC_FLAGS = -DUSE_LUFA_CONFIG_HEADER -IConfig/ | ||
| 24 | LD_FLAGS = | ||
| 25 | |||
| 26 | # Default target | ||
| 27 | all: | ||
| 28 | |||
| 29 | # Include LUFA-specific DMBS extension modules | ||
| 30 | DMBS_LUFA_PATH ?= $(LUFA_PATH)/Build/LUFA | ||
| 31 | include $(DMBS_LUFA_PATH)/lufa-sources.mk | ||
| 32 | include $(DMBS_LUFA_PATH)/lufa-gcc.mk | ||
| 33 | |||
| 34 | # Include common DMBS build system modules | ||
| 35 | DMBS_PATH ?= $(LUFA_PATH)/Build/DMBS/DMBS | ||
| 36 | include $(DMBS_PATH)/core.mk | ||
| 37 | include $(DMBS_PATH)/cppcheck.mk | ||
| 38 | include $(DMBS_PATH)/doxygen.mk | ||
| 39 | include $(DMBS_PATH)/dfu.mk | ||
| 40 | include $(DMBS_PATH)/gcc.mk | ||
| 41 | include $(DMBS_PATH)/hid.mk | ||
| 42 | include $(DMBS_PATH)/avrdude.mk | ||
| 43 | include $(DMBS_PATH)/atprogram.mk | ||
