diff options
Diffstat (limited to 'users/drashna/rules.mk')
-rw-r--r-- | users/drashna/rules.mk | 12 |
1 files changed, 4 insertions, 8 deletions
diff --git a/users/drashna/rules.mk b/users/drashna/rules.mk index 12fa956b7d..b96e8a532b 100644 --- a/users/drashna/rules.mk +++ b/users/drashna/rules.mk @@ -13,8 +13,9 @@ GRAVE_ESC_ENABLE = no # DEBUG_MATRIX_SCAN_RATE_ENABLE = api ifneq ($(strip $(NO_SECRETS)), yes) - ifneq ("$(wildcard $(USER_PATH)/keyrecords/secrets.c)","") - SRC += $(USER_PATH)/keyrecords/secrets.c + ifneq ("$(wildcard $(USER_PATH)/../../../qmk_secrets/secrets.c)","") + SRC += $(USER_PATH)/../../../qmk_secrets/secrets.c + SECURE_ENABLE = yes endif ifeq ($(strip $(NO_SECRETS)), lite) OPT_DEFS += -DNO_SECRETS @@ -102,6 +103,7 @@ ifeq ($(strip $(POINTING_DEVICE_ENABLE)), yes) ifeq ($(strip $(CUSTOM_POINTING_DEVICE)), yes) SRC += $(USER_PATH)/pointing/pointing.c OPT_DEFS += -DCUSTOM_POINTING_DEVICE + OPT_DEFS += -DMOUSE_EXT_REPORT endif endif @@ -119,9 +121,3 @@ ifeq ($(strip $(AUTOCORRECTION_ENABLE)), yes) SRC += $(USER_PATH)/keyrecords/autocorrection/autocorrection.c OPT_DEFS += -DAUTOCORRECTION_ENABLE endif - -CAPS_WORD_ENABLE ?= no -ifeq ($(strip $(CAPS_WORD_ENABLE)), yes) - SRC += $(USER_PATH)/keyrecords/caps_word.c - OPT_DEFS += -DCAPS_WORD_ENABLE -endif |