15 lines
295 B
Makefile
15 lines
295 B
Makefile
# Enable N-Key Rollover
|
|
NKRO_ENABLE = yes
|
|
|
|
# optimize size
|
|
LTO_ENABLE = yes
|
|
|
|
# needed for getreuer/tap_flow
|
|
COMBOS_ENABLE = yes
|
|
REPEAT_KEY_ENABLE = yes
|
|
|
|
# add bongocat & luna for OLEDs
|
|
ifeq ($(strip $(OLED_ENABLE)), yes)
|
|
SRC += features/oled_bongocat.c
|
|
SRC += features/oled_luna.c
|
|
endif
|