diff options
author | Álvaro Cortés <alvarocortesdevesa@gmail.com> | 2022-04-19 12:32:11 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-04-19 20:32:11 +1000 |
commit | 50ec365806adb43ab5e99cfd181b840b17c24259 (patch) | |
tree | 55d4a8eab0ee8698f60b7ae7884ca75e3c8c085c /keyboards/crkbd/keymaps/colemad/rules.mk | |
parent | bde724e1249a696c070f4ce12964be1ea6d43ead (diff) |
[Keymap] A Colemak keymap for the crkbd keyboard (#16550)
Diffstat (limited to 'keyboards/crkbd/keymaps/colemad/rules.mk')
-rw-r--r-- | keyboards/crkbd/keymaps/colemad/rules.mk | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/keyboards/crkbd/keymaps/colemad/rules.mk b/keyboards/crkbd/keymaps/colemad/rules.mk new file mode 100644 index 0000000000..6f9d31a755 --- /dev/null +++ b/keyboards/crkbd/keymaps/colemad/rules.mk @@ -0,0 +1,21 @@ +RGB_MATRIX_ENABLE = yes +RGBLIGHT_ENABLE = no +SPLIT_KEYBOARD = yes +TAP_DANCE_ENABLE = yes +MOUSEKEY_ENABLE = no +OLED_ENABLE = yes +OLED_DRIVER = SSD1306 + + +# Link Time Optimization (Reduces compiled size) +LTO_ENABLE = yes + +SRC += ./process_records.c + +ifeq ($(TAP_DANCE_ENABLE),yes) + SRC += ./tap_dances.c +endif + +ifeq ($(OLED_ENABLE),yes) + SRC += ./oled.c +endif |