summaryrefslogtreecommitdiff
path: root/users/drashna/rules.mk
diff options
context:
space:
mode:
authorDrashna Jaelre <drashna@live.com>2022-05-30 22:02:55 -0700
committerGitHub <noreply@github.com>2022-05-30 22:02:55 -0700
commitcda343acbe45826225edac75eaa63216bf76d874 (patch)
tree398a14c907baa8e6521fc9d001a4619289e1d7a3 /users/drashna/rules.mk
parentb554e4b612d24109ce714554a306043a01382cbd (diff)
[Keymap] Drashna update for post Q2 merge (#17241)
Diffstat (limited to 'users/drashna/rules.mk')
-rw-r--r--users/drashna/rules.mk12
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