forked from forks/qmk_firmware
20c0533c4c
* Xulkal changes Refactor rgb & encoder menu Hadron Keymap Refactor oled menu * Fixing horizontal OLED data display * Reverting changes to take to separate prs
34 lines
737 B
Makefile
34 lines
737 B
Makefile
SRC += xulkal.c \
|
|
process_records.c \
|
|
custom_tap_dance.c \
|
|
timer_utils.c
|
|
|
|
# Some usual defaults
|
|
MOUSEKEY_ENABLE = no # Mouse keys (+4700)
|
|
EXTRAKEY_ENABLE = yes # Audio control and System control (+450)
|
|
TAP_DANCE_ENABLE = yes
|
|
|
|
ifneq ($(strip $(DISABLE_LTO)), yes)
|
|
EXTRAFLAGS += -flto
|
|
OPT_DEFS += -DNO_ACTION_MACRO
|
|
OPT_DEFS += -DNO_ACTION_FUNCTION
|
|
endif
|
|
|
|
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
|
|
|
|
ifeq ($(strip $(OLED_DRIVER_ENABLE)), yes)
|
|
SRC += custom_oled.c
|
|
endif
|