diff options
| author | Drashna Jaelre <drashna@live.com> | 2019-08-02 14:02:40 -0700 |
|---|---|---|
| committer | skullydazed <skullydazed@users.noreply.github.com> | 2019-08-30 15:01:52 -0700 |
| commit | cf4575b94a3c65e6535a159fc71fc885aebc2620 (patch) | |
| tree | 2354f2b7a200e02246a564afefedc32357e62b8e /lib/lufa/Projects/MediaController/makefile | |
| parent | 75ee8df19e0f14ba466f41ab673dde2fe2fdae9c (diff) | |
| download | qmk_firmware-cf4575b94a3c65e6535a159fc71fc885aebc2620.tar.gz qmk_firmware-cf4575b94a3c65e6535a159fc71fc885aebc2620.zip | |
Fix the LUFA lib to use a submodule instead of just files (#6245)
* Remove LUFA files
* Update descriptions for newer version of LUFA
* Create PR6245.md
* Fix CDC(Serial) type errors
* Fix missed merge conflict for AUDIO_DTYPE_CSInterface
Diffstat (limited to 'lib/lufa/Projects/MediaController/makefile')
| -rw-r--r-- | lib/lufa/Projects/MediaController/makefile | 43 |
1 files changed, 0 insertions, 43 deletions
diff --git a/lib/lufa/Projects/MediaController/makefile b/lib/lufa/Projects/MediaController/makefile deleted file mode 100644 index 4df317e89..000000000 --- a/lib/lufa/Projects/MediaController/makefile +++ /dev/null | |||
| @@ -1,43 +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 | MCU = at90usb1287 | ||
| 15 | ARCH = AVR8 | ||
| 16 | BOARD = USBKEY | ||
| 17 | F_CPU = 8000000 | ||
| 18 | F_USB = $(F_CPU) | ||
| 19 | OPTIMIZATION = s | ||
| 20 | TARGET = MediaController | ||
| 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 | ||
