diff options
Diffstat (limited to 'users/drashna/rules.mk')
| -rw-r--r-- | users/drashna/rules.mk | 16 |
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 @@ | |||
| 1 | SRC += drashna.c \ | 1 | SRC += $(USER_PATH)/drashna.c \ |
| 2 | process_records.c | 2 | $(USER_PATH)/process_records.c |
| 3 | 3 | ||
| 4 | ifneq ($(PLATFORM),CHIBIOS) | 4 | ifneq ($(PLATFORM),CHIBIOS) |
| 5 | ifneq ($(strip $(LTO_SUPPORTED)), no) | 5 | ifneq ($(strip $(LTO_SUPPORTED)), no) |
| @@ -11,7 +11,7 @@ GRAVE_ESC_ENABLE = no | |||
| 11 | 11 | ||
| 12 | ifneq ($(strip $(NO_SECRETS)), yes) | 12 | ifneq ($(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 | |||
| 21 | CUSTOM_TAP_DANCE ?= yes | 21 | CUSTOM_TAP_DANCE ?= yes |
| 22 | ifeq ($(strip $(TAP_DANCE_ENABLE)), yes) | 22 | ifeq ($(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 |
| 26 | endif | 26 | endif |
| 27 | 27 | ||
| 28 | CUSTOM_RGBLIGHT ?= yes | 28 | CUSTOM_RGBLIGHT ?= yes |
| 29 | ifeq ($(strip $(RGBLIGHT_ENABLE)), yes) | 29 | ifeq ($(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 | |||
| 41 | CUSTOM_RGB_MATRIX ?= yes | 41 | CUSTOM_RGB_MATRIX ?= yes |
| 42 | ifeq ($(strip $(RGB_MATRIX_ENABLE)), yes) | 42 | ifeq ($(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 |
| 46 | endif | 46 | endif |
| 47 | 47 | ||
| @@ -66,7 +66,7 @@ endif | |||
| 66 | CUSTOM_OLED_DRIVER ?= yes | 66 | CUSTOM_OLED_DRIVER ?= yes |
| 67 | ifeq ($(strip $(OLED_ENABLE)), yes) | 67 | ifeq ($(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 |
| 72 | endif | 72 | endif |
| @@ -81,7 +81,7 @@ endif | |||
| 81 | CUSTOM_SPLIT_TRANSPORT_SYNC ?= yes | 81 | CUSTOM_SPLIT_TRANSPORT_SYNC ?= yes |
| 82 | ifeq ($(strip $(CUSTOM_SPLIT_TRANSPORT_SYNC)), yes) | 82 | ifeq ($(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 |
| 87 | endif | 87 | endif |
