diff options
author | Jack Humbert <jack.humb@gmail.com> | 2015-10-26 14:49:46 -0400 |
---|---|---|
committer | Jack Humbert <jack.humb@gmail.com> | 2015-10-26 14:49:46 -0400 |
commit | 46e7fb2d3ccd699c0a1b1fd9d02860b1f2a44141 (patch) | |
tree | f0b00f664ecdaf83e30f27baf20780eb5d91c39a /keyboard/planck/Makefile | |
parent | ff8d8a50dfbb8502003a5181878c54a71b8c57d5 (diff) |
quantum separated
Diffstat (limited to 'keyboard/planck/Makefile')
-rw-r--r-- | keyboard/planck/Makefile | 19 |
1 files changed, 3 insertions, 16 deletions
diff --git a/keyboard/planck/Makefile b/keyboard/planck/Makefile index 3ac4540e16..643646155f 100644 --- a/keyboard/planck/Makefile +++ b/keyboard/planck/Makefile @@ -39,7 +39,7 @@ #---------------------------------------------------------------------------- # Target file name (without extension). -TARGET = planck_lufa +TARGET = planck # Directory common source filess exist @@ -49,9 +49,7 @@ TOP_DIR = ../.. TARGET_DIR = . # # project specific files -SRC = keymap_common.c \ - matrix.c \ - led.c \ +SRC = planck.c \ backlight.c ifdef KEYMAP @@ -128,14 +126,6 @@ MIDI_ENABLE = YES # MIDI controls # UNICODE_ENABLE = YES # Unicode BLUETOOTH_ENABLE = yes # Enable Bluetooth with the Adafruit EZ-Key HID -ifdef MIDI_ENABLE - SRC += keymap_midi.c \ - beeps.c -endif - -ifdef UNICODE_ENABLE - SRC += keymap_unicode.c -endif # Optimize size but this may cause error "relocation truncated to fit" #EXTRALDFLAGS = -Wl,--relax @@ -144,8 +134,5 @@ endif VPATH += $(TARGET_DIR) VPATH += $(TOP_DIR) -include $(TOP_DIR)/protocol/lufa.mk - -include $(TOP_DIR)/common.mk -include $(TOP_DIR)/rules.mk +include $(TOP_DIR)/quantum.mk |