aboutsummaryrefslogtreecommitdiff
path: root/common_features.mk
diff options
context:
space:
mode:
authorDrashna Jaelre <drashna@live.com>2021-07-11 14:31:35 -0700
committerGitHub <noreply@github.com>2021-07-11 14:31:35 -0700
commitccc0b23a75f30f0ee9e1c6440dd3d56c99d38ea2 (patch)
tree26143876908e9c0b1b279a7da61be0f90cd00de4 /common_features.mk
parent0b06452d00dcd967bfcaffe89e88a4758c878e74 (diff)
downloadqmk_firmware-ccc0b23a75f30f0ee9e1c6440dd3d56c99d38ea2.tar.gz
qmk_firmware-ccc0b23a75f30f0ee9e1c6440dd3d56c99d38ea2.zip
Unify matrix for split common and regular matrix (#13330)
Diffstat (limited to 'common_features.mk')
-rw-r--r--common_features.mk6
1 files changed, 1 insertions, 5 deletions
diff --git a/common_features.mk b/common_features.mk
index f7bdedf2f..8080113ef 100644
--- a/common_features.mk
+++ b/common_features.mk
@@ -511,11 +511,7 @@ ifneq ($(strip $(CUSTOM_MATRIX)), yes)
511 # if 'lite' then skip the actual matrix implementation 511 # if 'lite' then skip the actual matrix implementation
512 ifneq ($(strip $(CUSTOM_MATRIX)), lite) 512 ifneq ($(strip $(CUSTOM_MATRIX)), lite)
513 # Include the standard or split matrix code if needed 513 # Include the standard or split matrix code if needed
514 ifeq ($(strip $(SPLIT_KEYBOARD)), yes) 514 QUANTUM_SRC += $(QUANTUM_DIR)/matrix.c
515 QUANTUM_SRC += $(QUANTUM_DIR)/split_common/matrix.c
516 else
517 QUANTUM_SRC += $(QUANTUM_DIR)/matrix.c
518 endif
519 endif 515 endif
520endif 516endif
521 517