rules.mk 571 B

123456789101112131415161718192021222324252627
  1. SRC += jjerrell.c \
  2. process_records.c
  3. LEADER_ENABLE = yes
  4. MOUSEKEY_ENABLE = yes
  5. EXTRAKEY_ENABLE = yes
  6. ifneq ($(PLATFORM),CHIBIOS)
  7. LTO_ENABLE = yes
  8. endif
  9. SPACE_CADET_ENABLE = no
  10. GRAVE_ESC_ENABLE = no
  11. ifneq ($(strip $(NO_SECRETS)), yes)
  12. ifneq ("$(wildcard $(USER_PATH)/secrets.c)","")
  13. SRC += secrets.c
  14. endif
  15. ifeq ($(strip $(NO_SECRETS)), lite)
  16. OPT_DEFS += -DNO_SECRETS
  17. endif
  18. endif
  19. # TODO: RGB is next
  20. # RGB_MATRIX_ENABLE ?= no
  21. # ifneq ($(strip $(RGB_MATRIX_ENABLE)), no)
  22. # SRC += rgb_matrix_stuff.c
  23. # endif