2019-03-01 11:20:26 +08:00
|
|
|
SRC += xulkal.c \
|
2019-06-02 05:39:31 +08:00
|
|
|
process_records.c \
|
2019-08-26 03:37:55 +08:00
|
|
|
custom_tap_dance.c
|
2019-03-01 11:20:26 +08:00
|
|
|
|
|
|
|
# Some usual defaults
|
|
|
|
MOUSEKEY_ENABLE = no # Mouse keys (+4700)
|
|
|
|
EXTRAKEY_ENABLE = yes # Audio control and System control (+450)
|
2019-06-06 07:14:35 +08:00
|
|
|
TAP_DANCE_ENABLE = yes
|
2019-03-01 11:20:26 +08:00
|
|
|
|
|
|
|
ifneq ($(strip $(DISABLE_LTO)), yes)
|
|
|
|
EXTRAFLAGS += -flto
|
|
|
|
OPT_DEFS += -DNO_ACTION_MACRO
|
|
|
|
OPT_DEFS += -DNO_ACTION_FUNCTION
|
|
|
|
endif
|
2019-07-26 02:56:29 +08:00
|
|
|
|
|
|
|
ifeq ($(strip $(ENCODER_ENABLE)), yes)
|
|
|
|
SRC += custom_encoder.c
|
|
|
|
endif
|
|
|
|
|
|
|
|
ifneq ($(strip $(RGB_MATRIX_ENABLE)), no)
|
|
|
|
OPT_DEFS += -DRGB_ENABLE
|
|
|
|
SRC += custom_rgb.c
|
|
|
|
endif
|
|
|
|
|
|
|
|
ifeq ($(strip $(RGBLIGHT_ENABLE)), yes)
|
|
|
|
OPT_DEFS += -DRGB_ENABLE
|
|
|
|
SRC += custom_rgb.c
|
|
|
|
endif
|
|
|
|
|
2021-08-24 14:28:26 +08:00
|
|
|
ifeq ($(strip $(OLED_ENABLE)), yes)
|
2019-07-26 02:56:29 +08:00
|
|
|
SRC += custom_oled.c
|
|
|
|
endif
|