X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=keyboard%2Fgh60%2FMakefile;h=9429049fd9fdf3805e21e676ebfd63f9bc99a666;hb=bae92b2a107be12ede494647dc0452d5ebb1d839;hp=b48ee3fde61a39db2f44ec61233ebe3cc6b96648;hpb=a54da1b92663606f5e5c18bc1eaec30c06847da1;p=qmk_firmware.git diff --git a/keyboard/gh60/Makefile b/keyboard/gh60/Makefile index b48ee3fde..9429049fd 100644 --- a/keyboard/gh60/Makefile +++ b/keyboard/gh60/Makefile @@ -43,19 +43,19 @@ TARGET = gh60_lufa # Directory common source filess exist TOP_DIR = ../.. +TMK_DIR = ../../tmk_core # Directory keyboard dependent files exist TARGET_DIR = . # project specific files -SRC = keymap_common.c \ - matrix.c \ +SRC = matrix.c \ led.c ifdef KEYMAP - SRC := keymap_$(KEYMAP).c $(SRC) + SRC := keymaps/$(KEYMAP).c $(SRC) else - SRC := keymap_planck.c $(SRC) + SRC := keymaps/poker.c $(SRC) endif CONFIG_H = config.h @@ -119,6 +119,7 @@ MOUSEKEY_ENABLE = yes # Mouse keys(+4700) EXTRAKEY_ENABLE = yes # Audio control and System control(+450) CONSOLE_ENABLE = yes # Console for debug(+400) COMMAND_ENABLE = yes # Commands for debug and configuration +CUSTOM_MATRIX = yes #SLEEP_LED_ENABLE = yes # Breathing sleep LED during USB suspend NKRO_ENABLE = yes # USB Nkey Rollover - not yet supported in LUFA @@ -129,7 +130,6 @@ NKRO_ENABLE = yes # USB Nkey Rollover - not yet supported in LUFA # Search Path VPATH += $(TARGET_DIR) VPATH += $(TOP_DIR) +VPATH += $(TMK_DIR) -include $(TOP_DIR)/protocol/lufa.mk -include $(TOP_DIR)/common.mk -include $(TOP_DIR)/rules.mk +include $(TOP_DIR)/quantum/quantum.mk