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.mk13
1 files changed, 7 insertions, 6 deletions
diff --git a/users/drashna/rules.mk b/users/drashna/rules.mk
index 4d55da803..051368ff5 100644
--- a/users/drashna/rules.mk
+++ b/users/drashna/rules.mk
@@ -2,9 +2,10 @@ SRC += drashna.c \
2 process_records.c 2 process_records.c
3 3
4ifneq ($(PLATFORM),CHIBIOS) 4ifneq ($(PLATFORM),CHIBIOS)
5 LTO_ENABLE = yes 5 LTO_ENABLE = yes
6endif 6endif
7SPACE_CADET_ENABLE = no 7SPACE_CADET_ENABLE = no
8GRAVE_ESC_ENABLE = no
8 9
9ifneq ($(strip $(NO_SECRETS)), yes) 10ifneq ($(strip $(NO_SECRETS)), yes)
10 ifneq ("$(wildcard $(USER_PATH)/secrets.c)","") 11 ifneq ("$(wildcard $(USER_PATH)/secrets.c)","")
@@ -19,10 +20,6 @@ ifeq ($(strip $(TAP_DANCE_ENABLE)), yes)
19 SRC += tap_dances.c 20 SRC += tap_dances.c
20endif 21endif
21 22
22
23
24
25
26ifeq ($(strip $(RGBLIGHT_ENABLE)), yes) 23ifeq ($(strip $(RGBLIGHT_ENABLE)), yes)
27 SRC += rgb_stuff.c 24 SRC += rgb_stuff.c
28 ifeq ($(strip $(INDICATOR_LIGHTS)), yes) 25 ifeq ($(strip $(INDICATOR_LIGHTS)), yes)
@@ -41,7 +38,7 @@ endif
41 38
42RGB_MATRIX_ENABLE ?= no 39RGB_MATRIX_ENABLE ?= no
43ifneq ($(strip $(RGB_MATRIX_ENABLE)), no) 40ifneq ($(strip $(RGB_MATRIX_ENABLE)), no)
44 SRC += rgb_stuff.c 41 SRC += rgb_matrix_stuff.c
45endif 42endif
46 43
47 44
@@ -61,3 +58,7 @@ endif
61ifeq ($(strip $(PROTOCOL)), VUSB) 58ifeq ($(strip $(PROTOCOL)), VUSB)
62 NKRO_ENABLE = no 59 NKRO_ENABLE = no
63endif 60endif
61
62ifeq ($(strip $(OLED_DRIVER_ENABLE)), yes)
63 SRC += oled_stuff.c
64endif