2
0

rules.mk 4.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125
  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 = yes # 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 = yes # Audio output on port B5
  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.
  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 6 Variables
  28. # jp: 以下の6つの変数を必要に応じて編集します。
  29. OLED_ENABLE = no # OLED_ENABLE
  30. LOCAL_GLCDFONT = no # use each keymaps "helixfont.h" insted of "common/glcdfont.c"
  31. LED_BACK_ENABLE = no # LED backlight (Enable WS2812 RGB underlight.)
  32. LED_UNDERGLOW_ENABLE = no # LED underglow (Enable WS2812 RGB underlight.)
  33. LED_ANIMATIONS = yes # LED animations
  34. IOS_DEVICE_ENABLE = no # connect to IOS device (iPad,iPhone)
  35. Link_Time_Optimization = no # if firmware size over limit, try this option
  36. #### LED_BACK_ENABLE and LED_UNDERGLOW_ENABLE.
  37. #### Do not enable these with audio at the same time.
  38. ### Helix keyboard 'default' keymap: convenient command line option
  39. ## make HELIX=<options> helix:defualt
  40. ## option= oled | back | under | na | ios
  41. ## ex.
  42. ## make HELIX=oled helix:defualt
  43. ## make HELIX=oled,back helix:defualt
  44. ## make HELIX=oled,under helix:defualt
  45. ## make HELIX=oled,back,na helix:defualt
  46. ## make HELIX=oled,back,ios helix:defualt
  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. ifeq ($(strip $(LED_BACK_ENABLE)), yes)
  71. RGBLIGHT_ENABLE = yes
  72. OPT_DEFS += -DRGBLED_BACK
  73. ifeq ($(strip $(LED_UNDERGLOW_ENABLE)), yes)
  74. $(eval $(call HELIX_CUSTOMISE_MSG))
  75. $(error LED_BACK_ENABLE and LED_UNDERGLOW_ENABLE both 'yes')
  76. endif
  77. else ifeq ($(strip $(LED_UNDERGLOW_ENABLE)), yes)
  78. RGBLIGHT_ENABLE = yes
  79. else
  80. RGBLIGHT_ENABLE = no
  81. endif
  82. ifeq ($(strip $(IOS_DEVICE_ENABLE)), yes)
  83. OPT_DEFS += -DIOS_DEVICE_ENABLE
  84. endif
  85. ifeq ($(strip $(LED_ANIMATIONS)), yes)
  86. OPT_DEFS += -DLED_ANIMATIONS
  87. endif
  88. ifeq ($(strip $(OLED_ENABLE)), yes)
  89. OPT_DEFS += -DOLED_ENABLE
  90. endif
  91. ifeq ($(strip $(LOCAL_GLCDFONT)), yes)
  92. OPT_DEFS += -DLOCAL_GLCDFONT
  93. endif
  94. ifeq ($(strip $(AUDIO_ENABLE)),yes)
  95. ifeq ($(strip $(RGBLIGHT_ENABLE)),yes)
  96. Link_Time_Optimization = yes
  97. endif
  98. ifeq ($(strip $(OLED_ENABLE)),yes)
  99. Link_Time_Optimization = yes
  100. endif
  101. endif
  102. ifeq ($(strip $(Link_Time_Optimization)),yes)
  103. EXTRAFLAGS += -flto -DUSE_Link_Time_Optimization
  104. endif
  105. # Do not enable SLEEP_LED_ENABLE. it uses the same timer as BACKLIGHT_ENABLE
  106. SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend
  107. # Uncomment these for debugging
  108. # $(info -- RGBLIGHT_ENABLE=$(RGBLIGHT_ENABLE))
  109. # $(info -- OPT_DEFS=$(OPT_DEFS))
  110. # $(info )