diff options
author | Jack Humbert <jack.humb@gmail.com> | 2015-10-30 00:48:17 -0400 |
---|---|---|
committer | Jack Humbert <jack.humb@gmail.com> | 2015-10-30 00:48:17 -0400 |
commit | eb2795b4d649f062430c859012bc6bd8faa847ff (patch) | |
tree | 2ee3a8fc53542aa16f1632904d8be3f052895cd4 /keyboard/atomic/Makefile | |
parent | 3ac4f1519fbc90d2357c92cfd00557bdfc024e54 (diff) |
atomic up-to-date
Diffstat (limited to 'keyboard/atomic/Makefile')
-rw-r--r-- | keyboard/atomic/Makefile | 56 |
1 files changed, 16 insertions, 40 deletions
diff --git a/keyboard/atomic/Makefile b/keyboard/atomic/Makefile index 02153214f3..e678b4efa8 100644 --- a/keyboard/atomic/Makefile +++ b/keyboard/atomic/Makefile @@ -39,52 +39,24 @@ #---------------------------------------------------------------------------- # Target file name (without extension). -TARGET = atomic_lufa +TARGET = atomic + # Directory common source filess exist TOP_DIR = ../.. +TMK_DIR = ../../tmk_core # Directory keyboard dependent files exist TARGET_DIR = . # # project specific files -ifdef COMMON - - SRC = keymap_common.c \ - led.c \ - backlight.c +SRC = atomic.c \ + backlight.c ifdef KEYMAP - SRC := common_keymaps/keymap_$(KEYMAP).c $(SRC) -else - SRC := common_keymaps/keymap_jack.c $(SRC) -endif - -ifdef MATRIX - SRC := matrix_$(MATRIX).c $(SRC) + SRC := keymaps/keymap_$(KEYMAP).c $(SRC) else - SRC := matrix_pcb.c $(SRC) -endif - -else - -SRC = extended_keymap_common.c \ - analog.c \ - led.c \ - backlight.c - -ifdef KEYMAP - SRC := extended_keymaps/extended_keymap_$(KEYMAP).c $(SRC) -else - SRC := extended_keymaps/extended_keymap_default.c $(SRC) -endif - -ifdef MATRIX - SRC := matrix_$(MATRIX).c $(SRC) -else - SRC := matrix_pcb.c $(SRC) -endif - + SRC := keymaps/keymap_default.c $(SRC) endif CONFIG_H = config.h @@ -148,9 +120,13 @@ EXTRAKEY_ENABLE = yes # Audio control and System control(+450) CONSOLE_ENABLE = yes # Console for debug(+400) COMMAND_ENABLE = yes # Commands for debug and configuration # Do not enable SLEEP_LED_ENABLE. it uses the same timer as BACKLIGHT_ENABLE -#SLEEP_LED_ENABLE = yes # Breathing sleep LED during USB suspend -NKRO_ENABLE = yes # USB Nkey Rollover - not yet supported in LUFA +# SLEEP_LED_ENABLE = yes # Breathing sleep LED during USB suspend +# NKRO_ENABLE = yes # USB Nkey Rollover - not yet supported in LUFA BACKLIGHT_ENABLE = yes # Enable keyboard backlight functionality +# MIDI_ENABLE = YES # MIDI controls +# UNICODE_ENABLE = YES # Unicode +# BLUETOOTH_ENABLE = yes # Enable Bluetooth with the Adafruit EZ-Key HID + # Optimize size but this may cause error "relocation truncated to fit" #EXTRALDFLAGS = -Wl,--relax @@ -158,7 +134,7 @@ BACKLIGHT_ENABLE = yes # Enable keyboard backlight functionality # Search Path VPATH += $(TARGET_DIR) VPATH += $(TOP_DIR) +VPATH += $(TMK_DIR) + +include $(TOP_DIR)/quantum/quantum.mk -include $(TOP_DIR)/protocol/lufa.mk -include $(TOP_DIR)/common.mk -include $(TOP_DIR)/rules.mk |