diff options
author | Takeshi ISHII <2170248+mtei@users.noreply.github.com> | 2019-05-03 22:20:23 +0900 |
---|---|---|
committer | Drashna Jaelre <drashna@live.com> | 2019-05-03 08:38:46 -0700 |
commit | 19c6b7fe1038fe20201036c284210721af8b6320 (patch) | |
tree | 8e177834665bd530b6ea383f2b20f8482c3bdbd5 | |
parent | 59d28fe2884c0639ef020ece3e1bc6967ab0881f (diff) |
Fix LIB_SRC insert position (#5731)
The insertion point for `$(patsubst %.c,%.clib,$(LIB_SRC))` must be after all normal `SRC += ..` . I modified it to be so.
Because LIB_SRC and SRC are assumed to be used in pairs. Similarly, QUANTUM_LIB_SRC and QUANTUM_SRC are assumed to be used in pairs.
-rw-r--r-- | build_keyboard.mk | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/build_keyboard.mk b/build_keyboard.mk index 5d633f2716..469a947f5e 100644 --- a/build_keyboard.mk +++ b/build_keyboard.mk @@ -324,7 +324,6 @@ ifneq ("$(wildcard $(KEYMAP_PATH)/config.h)","") endif # # project specific files -SRC += $(patsubst %.c,%.clib,$(LIB_SRC)) SRC += $(KEYBOARD_SRC) \ $(KEYMAP_C) \ $(QUANTUM_SRC) @@ -343,6 +342,7 @@ include $(TMK_PATH)/protocol.mk include $(TMK_PATH)/common.mk include bootloader.mk +SRC += $(patsubst %.c,%.clib,$(LIB_SRC)) SRC += $(patsubst %.c,%.clib,$(QUANTUM_LIB_SRC)) SRC += $(TMK_COMMON_SRC) OPT_DEFS += $(TMK_COMMON_DEFS) |