rules.mk 581 B

1234567891011121314151617181920
  1. # https://github.com/qmk/qmk_firmware/blob/develop/docs/squeezing_avr.md
  2. CONSOLE_ENABLE = no
  3. COMMAND_ENABLE = no # Needed for Space Cadet Shift
  4. MOUSEKEY_ENABLE = no
  5. SPACE_CADET_ENABLE = no # Implemented with tap dance
  6. GRAVE_ESC_ENABLE = no
  7. MAGIC_ENABLE = no
  8. MUSIC_ENABLE = no
  9. # VIA only support 4 layers by default
  10. # Use "#define DYNAMIC_KEYMAP_LAYER_COUNT" in config.h to change the limit
  11. VIA_ENABLE = no
  12. ifeq ($(strip $(OLED_ENABLE)), yes)
  13. SRC += $(USER_PATH)/oled/oled.c
  14. endif
  15. ifeq ($(strip $(TAP_DANCE_ENABLE)), yes)
  16. SRC += $(USER_PATH)/keyrecords/tap_dances.c
  17. endif