2018-12-04 22:27:41 +01:00
|
|
|
SRC += drashna.c \
|
|
|
|
process_records.c
|
2018-07-17 03:04:32 +02:00
|
|
|
|
2020-01-06 10:49:49 +01:00
|
|
|
ifneq ($(PLATFORM),CHIBIOS)
|
|
|
|
LTO_ENABLE = yes
|
|
|
|
endif
|
2019-11-20 21:37:24 +01:00
|
|
|
SPACE_CADET_ENABLE = no
|
2019-05-07 07:34:09 +02:00
|
|
|
|
2019-10-16 22:11:22 +02:00
|
|
|
ifneq ($(strip $(NO_SECRETS)), yes)
|
2019-11-20 21:37:24 +01:00
|
|
|
ifneq ("$(wildcard $(USER_PATH)/secrets.c)","")
|
|
|
|
SRC += secrets.c
|
|
|
|
endif
|
|
|
|
ifeq ($(strip $(NO_SECRETS)), lite)
|
|
|
|
OPT_DEFS += -DNO_SECRETS
|
|
|
|
endif
|
2018-07-17 03:04:32 +02:00
|
|
|
endif
|
2018-06-01 07:11:06 +02:00
|
|
|
|
|
|
|
ifeq ($(strip $(TAP_DANCE_ENABLE)), yes)
|
2019-05-07 07:34:09 +02:00
|
|
|
SRC += tap_dances.c
|
2018-06-01 07:11:06 +02:00
|
|
|
endif
|
|
|
|
|
2019-05-07 07:34:09 +02:00
|
|
|
|
2018-03-25 22:01:15 +02:00
|
|
|
|
2019-10-16 22:11:22 +02:00
|
|
|
|
2018-05-16 04:34:34 +02:00
|
|
|
|
2018-07-17 03:04:32 +02:00
|
|
|
ifeq ($(strip $(RGBLIGHT_ENABLE)), yes)
|
2019-05-07 07:34:09 +02:00
|
|
|
SRC += rgb_stuff.c
|
|
|
|
ifeq ($(strip $(INDICATOR_LIGHTS)), yes)
|
|
|
|
OPT_DEFS += -DINDICATOR_LIGHTS
|
|
|
|
endif
|
|
|
|
ifeq ($(strip $(RGBLIGHT_TWINKLE)), yes)
|
|
|
|
OPT_DEFS += -DRGBLIGHT_TWINKLE
|
|
|
|
endif
|
|
|
|
ifeq ($(strip $(RGBLIGHT_NOEEPROM)), yes)
|
|
|
|
OPT_DEFS += -DRGBLIGHT_NOEEPROM
|
|
|
|
endif
|
|
|
|
ifeq ($(strip $(RGBLIGHT_STARTUP_ANIMATION)), yes)
|
|
|
|
OPT_DEFS += -DRGBLIGHT_STARTUP_ANIMATION
|
|
|
|
endif
|
2018-06-01 07:11:06 +02:00
|
|
|
endif
|
|
|
|
|
2019-05-10 08:50:30 +02:00
|
|
|
RGB_MATRIX_ENABLE ?= no
|
2019-05-07 07:34:09 +02:00
|
|
|
ifneq ($(strip $(RGB_MATRIX_ENABLE)), no)
|
|
|
|
SRC += rgb_stuff.c
|
2018-11-27 01:45:24 +01:00
|
|
|
endif
|
|
|
|
|
|
|
|
|
2018-06-01 07:11:06 +02:00
|
|
|
ifdef CONSOLE_ENABLE
|
2019-05-07 07:34:09 +02:00
|
|
|
ifeq ($(strip $(KEYLOGGER_ENABLE)), yes)
|
|
|
|
OPT_DEFS += -DKEYLOGGER_ENABLE
|
|
|
|
endif
|
2018-05-16 04:34:34 +02:00
|
|
|
endif
|
2019-03-15 16:57:44 +01:00
|
|
|
|
|
|
|
ifeq ($(strip $(MAKE_BOOTLOADER)), yes)
|
|
|
|
OPT_DEFS += -DMAKE_BOOTLOADER
|
|
|
|
endif
|
2019-11-20 21:37:24 +01:00
|
|
|
|
|
|
|
# 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
|
2020-01-06 10:49:49 +01:00
|
|
|
endif
|