forked from forks/qmk_firmware
439afc883a
* Update mousekey parameters in userspace * Disable GRAVE_ESC in boards where it isn't used * Tweak MODERN_DOLCH_RED and reset RGB on Shift+Toggle in KBD6X * Disable RGB controls when Fn/Caps indicator lights are on * Use LTO_ENABLE instead of setting -flto directly * Add led_update_keymap, use SS_LCTL instead of SS_LCTRL * Change TAPPING_TOGGLE from 2 to 3
17 lines
349 B
Makefile
17 lines
349 B
Makefile
SRC += konstantin.c
|
|
ifeq ($(strip $(RGBLIGHT_ENABLE)), yes)
|
|
SRC += rgb.c
|
|
endif
|
|
RGB_MATRIX_ENABLE ?= no
|
|
ifneq ($(strip $(RGB_MATRIX_ENABLE)), no)
|
|
SRC += rgb.c
|
|
endif
|
|
ifeq ($(strip $(TAP_DANCE_ENABLE)), yes)
|
|
SRC += tap_dance.c
|
|
endif
|
|
ifneq (,$(filter yes,$(UNICODE_ENABLE) $(UNICODEMAP_ENABLE)))
|
|
SRC += unicode.c
|
|
endif
|
|
|
|
LTO_ENABLE = yes
|