17 lines
372 B
Makefile
17 lines
372 B
Makefile
BOOTMAGIC_ENABLE = no
|
|
COMMAND_ENABLE = yes
|
|
CONSOLE_ENABLE = yes
|
|
EXTRAKEY_ENABLE = yes
|
|
KEYBOARD_SHARED_EP = yes # TODO: Disable once Command is fixed
|
|
MOUSEKEY_ENABLE = yes
|
|
NKRO_ENABLE = yes
|
|
TAP_DANCE_ENABLE = yes
|
|
UNICODE_ENABLE = yes
|
|
|
|
SRC += konstantin.c
|
|
ifeq ($(strip $(TAP_DANCE_ENABLE)), yes)
|
|
SRC += tap_dance.c
|
|
endif
|
|
|
|
EXTRAFLAGS += -flto
|