Skip to content

Commit

Permalink
Merge pull request #41 from zsa/fix/lib_src_insert_point
Browse files Browse the repository at this point in the history
Fix LIB_SRC insert position (qmk#5731)
  • Loading branch information
fdidron authored May 6, 2019
2 parents 8e9ac7d + 19c6b7f commit 7a136f7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion build_keyboard.mk
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand All @@ -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)
Expand Down

0 comments on commit 7a136f7

Please sign in to comment.