diff options
author | Fred Sundvik <fsundvik@gmail.com> | 2017-06-16 22:14:47 +0300 |
---|---|---|
committer | Fred Sundvik <fsundvik@gmail.com> | 2017-06-18 21:22:22 +0300 |
commit | 1c0fe956ac242b1c85a9b024b9b3966020b862ed (patch) | |
tree | d685fb2f8867e666d4593a6c6cbd31e3c771cb20 /build_test.mk | |
parent | d29906cb64f3c49da43c209ce341e577278e5fad (diff) |
Split common.mk into common.mk and common_features.mk
To support including keyboard/keymap specific rules before it
Diffstat (limited to 'build_test.mk')
-rw-r--r-- | build_test.mk | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/build_test.mk b/build_test.mk index 609b094aff..cac2cba509 100644 --- a/build_test.mk +++ b/build_test.mk @@ -42,6 +42,11 @@ all: elf VPATH += $(COMMON_VPATH) PLATFORM:=TEST +ifneq ($(filter $(FULL_TESTS),$(TEST)),) +include tests/$(TEST)/rules.mk +endif + +include common_features.mk include $(TMK_PATH)/common.mk include $(QUANTUM_PATH)/serial_link/tests/rules.mk ifneq ($(filter $(FULL_TESTS),$(TEST)),) |