aboutsummaryrefslogtreecommitdiff
path: root/users/drashna/rules.mk
diff options
context:
space:
mode:
Diffstat (limited to 'users/drashna/rules.mk')
-rw-r--r--users/drashna/rules.mk16
1 files changed, 8 insertions, 8 deletions
diff --git a/users/drashna/rules.mk b/users/drashna/rules.mk
index dbacae1d5..e9911979c 100644
--- a/users/drashna/rules.mk
+++ b/users/drashna/rules.mk
@@ -1,5 +1,5 @@
1SRC += drashna.c \ 1SRC += $(USER_PATH)/drashna.c \
2 process_records.c 2 $(USER_PATH)/process_records.c
3 3
4ifneq ($(PLATFORM),CHIBIOS) 4ifneq ($(PLATFORM),CHIBIOS)
5 ifneq ($(strip $(LTO_SUPPORTED)), no) 5 ifneq ($(strip $(LTO_SUPPORTED)), no)
@@ -11,7 +11,7 @@ GRAVE_ESC_ENABLE = no
11 11
12ifneq ($(strip $(NO_SECRETS)), yes) 12ifneq ($(strip $(NO_SECRETS)), yes)
13 ifneq ("$(wildcard $(USER_PATH)/secrets.c)","") 13 ifneq ("$(wildcard $(USER_PATH)/secrets.c)","")
14 SRC += secrets.c 14 SRC += $(USER_PATH)/secrets.c
15 endif 15 endif
16 ifeq ($(strip $(NO_SECRETS)), lite) 16 ifeq ($(strip $(NO_SECRETS)), lite)
17 OPT_DEFS += -DNO_SECRETS 17 OPT_DEFS += -DNO_SECRETS
@@ -21,14 +21,14 @@ endif
21CUSTOM_TAP_DANCE ?= yes 21CUSTOM_TAP_DANCE ?= yes
22ifeq ($(strip $(TAP_DANCE_ENABLE)), yes) 22ifeq ($(strip $(TAP_DANCE_ENABLE)), yes)
23 ifeq ($(strip $(TAP_DANCE_ENABLE)), yes) 23 ifeq ($(strip $(TAP_DANCE_ENABLE)), yes)
24 SRC += tap_dances.c 24 SRC += $(USER_PATH)/tap_dances.c
25 endif 25 endif
26endif 26endif
27 27
28CUSTOM_RGBLIGHT ?= yes 28CUSTOM_RGBLIGHT ?= yes
29ifeq ($(strip $(RGBLIGHT_ENABLE)), yes) 29ifeq ($(strip $(RGBLIGHT_ENABLE)), yes)
30 ifeq ($(strip $(CUSTOM_RGBLIGHT)), yes) 30 ifeq ($(strip $(CUSTOM_RGBLIGHT)), yes)
31 SRC += rgb_stuff.c 31 SRC += $(USER_PATH)/rgb_stuff.c
32 ifeq ($(strip $(RGBLIGHT_NOEEPROM)), yes) 32 ifeq ($(strip $(RGBLIGHT_NOEEPROM)), yes)
33 OPT_DEFS += -DRGBLIGHT_NOEEPROM 33 OPT_DEFS += -DRGBLIGHT_NOEEPROM
34 endif 34 endif
@@ -41,7 +41,7 @@ endif
41CUSTOM_RGB_MATRIX ?= yes 41CUSTOM_RGB_MATRIX ?= yes
42ifeq ($(strip $(RGB_MATRIX_ENABLE)), yes) 42ifeq ($(strip $(RGB_MATRIX_ENABLE)), yes)
43 ifeq ($(strip $(CUSTOM_RGB_MATRIX)), yes) 43 ifeq ($(strip $(CUSTOM_RGB_MATRIX)), yes)
44 SRC += rgb_matrix_stuff.c 44 SRC += $(USER_PATH)/rgb_matrix_stuff.c
45 endif 45 endif
46endif 46endif
47 47
@@ -66,7 +66,7 @@ endif
66CUSTOM_OLED_DRIVER ?= yes 66CUSTOM_OLED_DRIVER ?= yes
67ifeq ($(strip $(OLED_ENABLE)), yes) 67ifeq ($(strip $(OLED_ENABLE)), yes)
68 ifeq ($(strip $(CUSTOM_OLED_DRIVER)), yes) 68 ifeq ($(strip $(CUSTOM_OLED_DRIVER)), yes)
69 SRC += oled_stuff.c 69 SRC += $(USER_PATH)/oled_stuff.c
70 OPT_DEFS += -DCUSTOM_OLED_DRIVER_CODE 70 OPT_DEFS += -DCUSTOM_OLED_DRIVER_CODE
71 endif 71 endif
72endif 72endif
@@ -81,7 +81,7 @@ endif
81CUSTOM_SPLIT_TRANSPORT_SYNC ?= yes 81CUSTOM_SPLIT_TRANSPORT_SYNC ?= yes
82ifeq ($(strip $(CUSTOM_SPLIT_TRANSPORT_SYNC)), yes) 82ifeq ($(strip $(CUSTOM_SPLIT_TRANSPORT_SYNC)), yes)
83 ifeq ($(strip $(SPLIT_KEYBOARD)), yes) 83 ifeq ($(strip $(SPLIT_KEYBOARD)), yes)
84 QUANTUM_LIB_SRC += transport_sync.c 84 QUANTUM_LIB_SRC += $(USER_PATH)/transport_sync.c
85 OPT_DEFS += -DCUSTOM_SPLIT_TRANSPORT_SYNC 85 OPT_DEFS += -DCUSTOM_SPLIT_TRANSPORT_SYNC
86 endif 86 endif
87endif 87endif