2018-12-04 22:27:41 +01:00
|
|
|
SRC += drashna.c \
|
|
|
|
process_records.c
|
2018-07-17 03:04:32 +02:00
|
|
|
|
|
|
|
ifneq ("$(wildcard $(USER_PATH)/secrets.c)","")
|
|
|
|
SRC += secrets.c
|
|
|
|
endif
|
2018-06-01 07:11:06 +02:00
|
|
|
|
|
|
|
ifeq ($(strip $(TAP_DANCE_ENABLE)), yes)
|
|
|
|
SRC += tap_dances.c
|
|
|
|
endif
|
|
|
|
|
2018-10-02 03:00:14 +02:00
|
|
|
EXTRAFLAGS += -flto
|
2018-03-25 22:01:15 +02:00
|
|
|
|
2018-04-21 02:53:19 +02:00
|
|
|
ifeq ($(strip $(NO_SECRETS)), yes)
|
|
|
|
OPT_DEFS += -DNO_SECRETS
|
|
|
|
endif
|
2018-05-16 04:34:34 +02:00
|
|
|
|
2018-07-17 03:04:32 +02:00
|
|
|
ifeq ($(strip $(RGBLIGHT_ENABLE)), yes)
|
|
|
|
SRC += rgb_stuff.c
|
2018-06-01 07:11:06 +02:00
|
|
|
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
|
|
|
|
endif
|
|
|
|
|
2018-11-27 01:45:24 +01:00
|
|
|
ifeq ($(strip $(RGB_MATRIX_ENABLE)), yes)
|
|
|
|
SRC += rgb_stuff.c
|
|
|
|
endif
|
|
|
|
|
|
|
|
|
2018-06-01 07:11:06 +02:00
|
|
|
ifeq ($(strip $(MACROS_ENABLED)), yes)
|
|
|
|
OPT_DEFS += -DMACROS_ENABLED
|
|
|
|
endif
|
|
|
|
|
|
|
|
ifdef CONSOLE_ENABLE
|
|
|
|
ifeq ($(strip $(KEYLOGGER_ENABLE)), yes)
|
|
|
|
OPT_DEFS += -DKEYLOGGER_ENABLE
|
|
|
|
endif
|
2018-05-16 04:34:34 +02:00
|
|
|
endif
|