rule.mk 912 B

12345678910111213141516171819202122232425262728
  1. ifeq ($(strip $(SECRETS)),yes)
  2. OPT_DEF += -DSECRETS
  3. endif
  4. # Build Options
  5. # comment out to disable the options.
  6. #
  7. BACKLIGHT_ENABLE = no
  8. BOOTMAGIC_ENABLE = yes # Virtual DIP switch configuration
  9. ## (Note that for BOOTMAGIC on Teensy LC you have to use a custom .ld script.)
  10. MOUSEKEY_ENABLE = yes # Mouse keys
  11. EXTRAKEY_ENABLE = yes # Audio control and System control
  12. CONSOLE_ENABLE = yes # Console for debug
  13. COMMAND_ENABLE = yes # Commands for debug and configuration
  14. #SLEEP_LED_ENABLE = yes # Breathing sleep LED during USB suspend
  15. NKRO_ENABLE = yes # USB Nkey Rollover
  16. CUSTOM_MATRIX = yes # Custom matrix file
  17. AUDIO_ENABLE = yes
  18. RGB_MATRIX_ENABLE = yes
  19. ENCODER_ENABLE = yes
  20. # SERIAL_LINK_ENABLE = yes
  21. # Do not enable SLEEP_LED_ENABLE. it uses the same timer as BACKLIGHT_ENABLE
  22. SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend
  23. ifndef QUANTUM_DIR
  24. include ../../../../Makefile
  25. endif