You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

33 lines
899 B

  1. SRC += replicaJunction.c
  2. # Only load these source files if the features are enabled. Keyboards can
  3. # enable or disable these features in their own rules.mk files.
  4. ifeq ($(strip $(USER_CAPS_WORD_ENABLE)), yes)
  5. SRC += features/caps_word.c
  6. OPT_DEFS += -DUSER_CAPS_WORD_ENABLE
  7. endif
  8. ifeq ($(strip $(USER_MOUSE_JIGGLE_ENABLE)), yes)
  9. SRC += features/mouse_jiggle.c
  10. OPT_DEFS += -DUSER_MOUSE_JIGGLE_ENABLE
  11. endif
  12. ifeq ($(strip $(USER_NUM_WORD_ENABLE)), yes)
  13. SRC += features/num_word.c
  14. OPT_DEFS += -DUSER_NUM_WORD_ENABLE
  15. endif
  16. ifeq ($(strip $(USER_SECRETS_ENABLE)), yes)
  17. SRC += features/secrets.c
  18. OPT_DEFS += -DUSER_SECRETS_ENABLE
  19. endif
  20. ifeq ($(strip $(USER_SUPER_ALT_TAB_ENABLE)), yes)
  21. SRC += features/super_alt_tab.c
  22. OPT_DEFS += -DUSER_SUPER_ALT_TAB_ENABLE
  23. endif
  24. # Define these last so any other logic can set up some defines first
  25. SRC += matrix_scan.c \
  26. process_records.c