rules.mk 1.5 KB

1234567891011121314151617181920212223242526272829303132333435
  1. # QMK Standard Build Options
  2. # change to "no" to disable the options, or define them in the Makefile in
  3. # the appropriate keymap folder that will get included automatically
  4. #
  5. # See TOP/keyboards/helix/rules.mk for a list of options that can be set.
  6. # See TOP/docs/config_options.md for more information.
  7. #
  8. CONSOLE_ENABLE = no # Console for debug
  9. COMMAND_ENABLE = no # Commands for debug and configuration
  10. # CONSOLE_ENABLE and COMMAND_ENABLE
  11. # yes, no +1500
  12. # yes, yes +3200
  13. # no, yes +400
  14. LINK_TIME_OPTIMIZATION_ENABLE = no # if firmware size over limit, try this option
  15. # Helix Spacific Build Options
  16. # you can uncomment and edit follows 7 Variables
  17. # jp: 以下の7つの変数を必要に応じて編集し、コメントアウトをはずします。
  18. HELIX_ROWS = 5 # Helix Rows is 4 or 5
  19. # OLED_ENABLE = no # OLED_ENABLE
  20. # LOCAL_GLCDFONT = no # use each keymaps "helixfont.h" insted of "common/glcdfont.c"
  21. # LED_BACK_ENABLE = no # LED backlight (Enable WS2812 RGB underlight.)
  22. # LED_UNDERGLOW_ENABLE = no # LED underglow (Enable WS2812 RGB underlight.)
  23. # LED_ANIMATIONS = yes # LED animations
  24. # IOS_DEVICE_ENABLE = no # connect to IOS device (iPad,iPhone)
  25. ifneq ($(strip $(HELIX)),)
  26. ifeq ($(findstring console,$(HELIX)), console)
  27. CONSOLE_ENABLE = yes
  28. endif
  29. endif
  30. # convert Helix-specific options (that represent combinations of standard options)
  31. # into QMK standard options.
  32. include $(strip $(KEYBOARD_LOCAL_FEATURES_MK))