rules.mk 912 B

1234567891011121314151617181920212223242526
  1. # Overridden build options from rev1 & rev2
  2. # RGB Options
  3. RGBLIGHT_ENABLE = no # Enable global lighting effects. Do not enable with RGB Matrix
  4. RGBLIGHT_ANIMATIONS = no # LED animations
  5. LED_MIRRORED = no # Mirror LEDs across halves (enable DIP 1 on slave, and DIP 2 and 3 on master)
  6. RGB_MATRIX_ENABLE = yes # Enable per-key coordinate based RGB effects. Do not enable with RGBlight
  7. FULLHAND_ENABLE = no # Enables the additional 24 Full Hand LEDs
  8. SF_ENABLE = no # Enables the additional 38 Starfighter LEDs
  9. # Misc
  10. OLED_DRIVER_ENABLE = yes # Enable the OLED Driver
  11. # Not using the encoder for rev1
  12. ifeq ($(strip $(KEYBOARD)), rgbkb/sol/rev1)
  13. ENCODER_ENABLE = no
  14. RGB_OLED_MENU = no
  15. else
  16. ENCODER_ENABLE = yes
  17. RGB_OLED_MENU = 0
  18. endif
  19. # Do not edit past here
  20. include keyboards/$(KEYBOARD)/post_rules.mk