2
0

rules.mk 4.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123
  1. # 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. BOOTMAGIC_ENABLE = no # Virtual DIP switch configuration(+1000)
  6. MOUSEKEY_ENABLE = no # Mouse keys(+4700)
  7. EXTRAKEY_ENABLE = no # Audio control and System control(+450)
  8. CONSOLE_ENABLE = no # Console for debug(+400)
  9. COMMAND_ENABLE = no # Commands for debug and configuration
  10. NKRO_ENABLE = no # Nkey Rollover - if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work
  11. BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality
  12. MIDI_ENABLE = no # MIDI controls
  13. AUDIO_ENABLE = no # Audio output on port C6
  14. UNICODE_ENABLE = no # Unicode
  15. BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID
  16. RGBLIGHT_ENABLE = no # Enable WS2812 RGB underlight. Do not enable this with audio at the same time.
  17. SWAP_HANDS_ENABLE = no # Enable one-hand typing
  18. define HELIX_CUSTOMISE_MSG
  19. $(info Helix customize)
  20. $(info - OLED_ENABLE=$(OLED_ENABLE))
  21. $(info - LED_BACK_ENABLE=$(LED_BACK_ENABLE))
  22. $(info - LED_UNDERGLOW_ENABLE=$(LED_UNDERGLOW_ENABLE))
  23. $(info - LED_ANIMATION=$(LED_ANIMATIONS))
  24. $(info - IOS_DEVICE_ENABLE=$(IOS_DEVICE_ENABLE))
  25. endef
  26. # Helix keyboard customize
  27. # you can edit follows 7 Variables
  28. # jp: 以下の7つの変数を必要に応じて編集します。
  29. HELIX_ROWS = 5 # Helix Rows is 4 or 5
  30. OLED_ENABLE = no # OLED_ENABLE
  31. LOCAL_GLCDFONT = no # use each keymaps "helixfont.h" insted of "common/glcdfont.c"
  32. LED_BACK_ENABLE = no # LED backlight (Enable WS2812 RGB underlight.)
  33. LED_UNDERGLOW_ENABLE = no # LED underglow (Enable WS2812 RGB underlight.)
  34. LED_ANIMATIONS = yes # LED animations
  35. IOS_DEVICE_ENABLE = no # connect to IOS device (iPad,iPhone)
  36. #### LED_BACK_ENABLE and LED_UNDERGLOW_ENABLE.
  37. #### Do not enable these with audio at the same time.
  38. ### Helix keyboard 'five_rows' keymap: convenient command line option
  39. ## make HELIX=<options> helix:five_rows
  40. ## option= oled | back | under | na | ios
  41. ## ex.
  42. ## make HELIX=oled helix:five_rows
  43. ## make HELIX=oled,back helix:five_rows
  44. ## make HELIX=oled,under helix:five_rows
  45. ## make HELIX=oled,back,na helix:five_rows
  46. ## make HELIX=oled,back,ios helix:five_rows
  47. ##
  48. ifneq ($(strip $(HELIX)),)
  49. ifeq ($(findstring oled,$(HELIX)), oled)
  50. OLED_ENABLE = yes
  51. endif
  52. ifeq ($(findstring back,$(HELIX)), back)
  53. LED_BACK_ENABLE = yes
  54. else ifeq ($(findstring under,$(HELIX)), under)
  55. LED_UNDERGLOW_ENABLE = yes
  56. endif
  57. ifeq ($(findstring na,$(HELIX)), na)
  58. LED_ANIMATIONS = no
  59. endif
  60. ifeq ($(findstring ios,$(HELIX)), ios)
  61. IOS_DEVICE_ENABLE = yes
  62. endif
  63. $(eval $(call HELIX_CUSTOMISE_MSG))
  64. $(info )
  65. endif
  66. # Uncomment these for checking
  67. # jp: コンパイル時にカスタマイズの状態を表示したい時はコメントをはずします。
  68. # $(eval $(call HELIX_CUSTOMISE_MSG))
  69. # $(info )
  70. ifneq ($(strip $(HELIX_ROWS)), 4)
  71. ifneq ($(strip $(HELIX_ROWS)), 5)
  72. $(error HELIX_ROWS = $(strip $(HELIX_ROWS)) is unexpected value)
  73. endif
  74. endif
  75. OPT_DEFS += -DHELIX_ROWS=$(strip $(HELIX_ROWS))
  76. ifeq ($(strip $(LED_BACK_ENABLE)), yes)
  77. RGBLIGHT_ENABLE = yes
  78. OPT_DEFS += -DRGBLED_BACK
  79. ifeq ($(strip $(LED_UNDERGLOW_ENABLE)), yes)
  80. $(eval $(call HELIX_CUSTOMISE_MSG))
  81. $(error LED_BACK_ENABLE and LED_UNDERGLOW_ENABLE both 'yes')
  82. endif
  83. else ifeq ($(strip $(LED_UNDERGLOW_ENABLE)), yes)
  84. RGBLIGHT_ENABLE = yes
  85. else
  86. RGBLIGHT_ENABLE = no
  87. endif
  88. ifeq ($(strip $(IOS_DEVICE_ENABLE)), yes)
  89. OPT_DEFS += -DIOS_DEVICE_ENABLE
  90. endif
  91. ifeq ($(strip $(LED_ANIMATIONS)), yes)
  92. OPT_DEFS += -DRGBLIGHT_ANIMATIONS
  93. endif
  94. ifeq ($(strip $(OLED_ENABLE)), yes)
  95. OPT_DEFS += -DOLED_ENABLE
  96. endif
  97. ifeq ($(strip $(LOCAL_GLCDFONT)), yes)
  98. OPT_DEFS += -DLOCAL_GLCDFONT
  99. endif
  100. # Do not enable SLEEP_LED_ENABLE. it uses the same timer as BACKLIGHT_ENABLE
  101. SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend
  102. ifndef QUANTUM_DIR
  103. include ../../../../Makefile
  104. endif
  105. # Uncomment these for debugging
  106. # $(info -- RGBLIGHT_ENABLE=$(RGBLIGHT_ENABLE))
  107. # $(info -- OPT_DEFS=$(OPT_DEFS))
  108. # $(info )