diff options
Diffstat (limited to 'users/drashna/rules.mk')
-rw-r--r-- | users/drashna/rules.mk | 23 |
1 files changed, 15 insertions, 8 deletions
diff --git a/users/drashna/rules.mk b/users/drashna/rules.mk index 1b5a863850..882857fc86 100644 --- a/users/drashna/rules.mk +++ b/users/drashna/rules.mk @@ -1,16 +1,16 @@ SRC += drashna.c \ process_records.c -LINK_TIME_OPTIMIZATION_ENABLE = yes -SPACE_CADET_ENABLE = no +LTO_ENABLE = yes +SPACE_CADET_ENABLE = no ifneq ($(strip $(NO_SECRETS)), yes) - ifneq ("$(wildcard $(USER_PATH)/secrets.c)","") - SRC += secrets.c - endif - ifeq ($(strip $(NO_SECRETS)), lite) - OPT_DEFS += -DNO_SECRETS - endif + ifneq ("$(wildcard $(USER_PATH)/secrets.c)","") + SRC += secrets.c + endif + ifeq ($(strip $(NO_SECRETS)), lite) + OPT_DEFS += -DNO_SECRETS + endif endif ifeq ($(strip $(TAP_DANCE_ENABLE)), yes) @@ -52,3 +52,10 @@ endif ifeq ($(strip $(MAKE_BOOTLOADER)), yes) OPT_DEFS += -DMAKE_BOOTLOADER endif + +# At least until build.mk or the like drops, this is here to prevent +# VUSB boards from enabling NKRO, as they do not support it. Ideally +# this should be handled per keyboard, but until that happens ... +ifeq ($(strip $(PROTOCOL)), VUSB) + NKRO_ENABLE = no +endif
\ No newline at end of file |