qmk_keymaps/keyboards/crkbd/keymaps/sajenim/rules.mk
♥ Minnie ♥ 9cb816b6a2
update: crkbd
* refactor codebase
* remove layer_lock.h
* remove select_word.h
* remove sentence_case.h
* remove mod layer
* remove magic briefs
* optimise thumbkeys
2024-08-09 22:37:18 +08:00

29 lines
542 B
Makefile

# We are using a Splinky RP2040 as a drop-in pro-micro replacement
CONVERT_TO = promicro_rp2040
BOOTLOADER = rp2040
# Reduce compiled size of firmware
LTO_ENABLE = yes
# Software features
AUTOCORRECT_ENABLE = yes
CAPS_WORD_ENABLE = yes
COMBO_ENABLE = yes
OLED_ENABLE = yes
REPEAT_KEY_ENABLE = yes
# Feature libraries
SRC += features/achordion.c
# Oled display configuration
ifeq ($(OLED_ENABLE),yes)
OLED_DRIVER = ssd1306
WPM_ENABLE = yes
endif
# Combo dictionary
ifeq ($(COMBO_ENABLE),yes)
VPATH += keyboards/gboards
endif