rules.mk 593 B

123456789101112131415161718
  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. # If your custom treadstone32 pcb, you can rewrite to yes.
  6. RGBLIGHT_ENABLE = yes # LED underglow (Enable WS2812 RGB underlight.)
  7. # Other selectable option
  8. IOS_DEVICE_ENABLE = no # connect to IOS device (iPad,iPhone)
  9. ifeq ($(strip $(LED_ANIMATIONS)), yes)
  10. # OPT_DEFS += -DRGBLIGHT_ANIMATIONS
  11. OPT_DEFS += -DLED_ANIMATIONS
  12. endif
  13. ifeq ($(strip $(IOS_DEVICE_ENABLE)), yes)
  14. OPT_DEFS += -DIOS_DEVICE_ENABLE
  15. endif