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
diff options
context:
space:
mode:
authorKarl Palsson <karlp@tweak.net.au>2018-07-26 01:27:16 +0300
committerKarl Palsson <karlp@tweak.net.au>2018-08-17 03:15:01 +0300
commitd465291f45a24200e805c4f9d69b709f5727d464 (patch)
tree8191c8bef37549d077fd141886a1d48b7681f6b4
parentd14033c744b11d86069d9e71ab60eeb407faec61 (diff)
tests: use the new auto depends on library
Provided in ea5d3cb7 genlink: provide LIBDEPS for libopencm3 itself
-rw-r--r--tests/rules.mk2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/rules.mk b/tests/rules.mk
index 2040ba67..dbc17d14 100644
--- a/tests/rules.mk
+++ b/tests/rules.mk
@@ -141,7 +141,7 @@ $(BUILD_DIR)/%.o: %.cxx
@mkdir -p $(dir $@)
$(Q)$(CC) $(TGT_CXXFLAGS) $(CXXFLAGS) $(TGT_CPPFLAGS) $(CPPFLAGS) -o $@ -c $<
-$(PROJECT).elf: $(OBJS) $(LDSCRIPT)
+$(PROJECT).elf: $(OBJS) $(LDSCRIPT) $(LIBDEPS)
@printf " LD\t$@\n"
$(Q)$(LD) $(TGT_LDFLAGS) $(LDFLAGS) $(OBJS) $(LDLIBS) -o $@