[Keymap] clean up userspace, add XD75 / Keyboardio Atreus (#13121)

Co-authored-by: Ryan <fauxpark@gmail.com>
Co-authored-by: Drashna Jaelre <drashna@live.com>
This commit is contained in:
Joshua T 2021-08-13 20:14:21 -05:00 committed by GitHub
parent 424b9ff709
commit ade989962a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
44 changed files with 2063 additions and 1203 deletions

View file

@ -1 +1,33 @@
SRC += replicaJunction.c
# Only load these source files if the features are enabled. Keyboards can
# enable or disable these features in their own rules.mk files.
ifeq ($(strip $(USER_CAPS_WORD_ENABLE)), yes)
SRC += features/caps_word.c
OPT_DEFS += -DUSER_CAPS_WORD_ENABLE
endif
ifeq ($(strip $(USER_MOUSE_JIGGLE_ENABLE)), yes)
SRC += features/mouse_jiggle.c
OPT_DEFS += -DUSER_MOUSE_JIGGLE_ENABLE
endif
ifeq ($(strip $(USER_NUM_WORD_ENABLE)), yes)
SRC += features/num_word.c
OPT_DEFS += -DUSER_NUM_WORD_ENABLE
endif
ifeq ($(strip $(USER_SECRETS_ENABLE)), yes)
SRC += features/secrets.c
OPT_DEFS += -DUSER_SECRETS_ENABLE
endif
ifeq ($(strip $(USER_SUPER_ALT_TAB_ENABLE)), yes)
SRC += features/super_alt_tab.c
OPT_DEFS += -DUSER_SUPER_ALT_TAB_ENABLE
endif
# Define these last so any other logic can set up some defines first
SRC += matrix_scan.c \
process_records.c