2019-01-14 09:09:47 -08:00
|
|
|
SRC += konstantin.c
|
2019-05-06 08:41:45 -07:00
|
|
|
ifeq ($(strip $(RGBLIGHT_ENABLE)), yes)
|
|
|
|
SRC += rgb.c
|
|
|
|
endif
|
2019-05-09 11:05:33 -07:00
|
|
|
RGB_MATRIX_ENABLE ?= no
|
2019-05-06 08:41:45 -07:00
|
|
|
ifneq ($(strip $(RGB_MATRIX_ENABLE)), no)
|
|
|
|
SRC += rgb.c
|
2019-02-11 13:41:51 -08:00
|
|
|
endif
|
2019-01-14 09:09:47 -08:00
|
|
|
ifeq ($(strip $(TAP_DANCE_ENABLE)), yes)
|
2019-05-06 08:41:45 -07:00
|
|
|
SRC += tap_dance.c
|
2019-01-14 09:09:47 -08:00
|
|
|
endif
|
2019-05-06 08:41:45 -07:00
|
|
|
ifneq (,$(filter yes,$(UNICODE_ENABLE) $(UNICODEMAP_ENABLE)))
|
|
|
|
SRC += unicode.c
|
2019-02-11 14:21:41 -08:00
|
|
|
endif
|
2019-01-14 09:09:47 -08:00
|
|
|
|
2020-05-15 23:36:08 -07:00
|
|
|
ifneq ($(PLATFORM),CHIBIOS)
|
|
|
|
LTO_ENABLE = yes
|
|
|
|
endif
|