Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/thirdpin/libopencm3.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/mk
diff options
context:
space:
mode:
authorKarl Palsson <karlp@tweak.net.au>2019-05-26 00:28:04 +0300
committerKarl Palsson <karlp@tweak.net.au>2019-05-26 00:28:04 +0300
commitf700781975dc823e8d02288aacbc775c6effed3f (patch)
tree576d900088451fadd37085212d64aecd403db52b /mk
parent96d094af13dab67709a252a39da164bde4d637e0 (diff)
genlinkk-config: fix missing .a suffix
Fixes: 96d094af13 mk/genlink-config: provide LIBNAME in devices autogeneration The initial fix had fixed the examples repo, but broke the tests and the template repo. Restore the suffix properly.
Diffstat (limited to 'mk')
-rw-r--r--mk/genlink-config.mk2
1 files changed, 1 insertions, 1 deletions
diff --git a/mk/genlink-config.mk b/mk/genlink-config.mk
index d2970b4c..4686fe6d 100644
--- a/mk/genlink-config.mk
+++ b/mk/genlink-config.mk
@@ -65,7 +65,7 @@ endif
endif
LDLIBS += -l$(LIBNAME)
-LIBDEPS += $(OPENCM3_DIR)/lib/lib$(LIBNAME)
+LIBDEPS += $(OPENCM3_DIR)/lib/lib$(LIBNAME).a
# only append to LDLIBS if the directory exists
ifneq (,$(wildcard $(OPENCM3_DIR)/lib))