rules.mk 540 B

1234567891011121314151617181920212223242526
  1. SRC += bocaj.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. RGB_MATRIX_ENABLE ?= no
  20. ifneq ($(strip $(RGB_MATRIX_ENABLE)), no)
  21. SRC += rgb_matrix_stuff.c
  22. endif