summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlex Bennée <alex.bennee@linaro.org>2023-01-05 11:00:05 +0000
committerPeter Maydell <peter.maydell@linaro.org>2023-01-05 17:07:39 +0000
commitd97e1d849b37f50a18b6cca56ab187c03a78257d (patch)
treea326989253d053879f14329fd2235ef9a84c33e6
parente7753edc271c786641da10d46e7f3213fa45dad7 (diff)
Makefile: drop microbit.lds from the sources
Otherwise the compiler will complain about the lds file being included more than once as we include all the dependencies in the compile step. Signed-off-by: Alex Bennée <alex.bennee@linaro.org> Reviewed-by: Peter Maydell <peter.maydell@linaro.org> Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index f58b79e..7b9a5f4 100644
--- a/Makefile
+++ b/Makefile
@@ -75,7 +75,7 @@ all: usertest-a32 usertest-a64 usertest-t32 \
usertest-srcs = usertest.c semihosting.c semicall.S printf/printf.c
systest-srcs = start.S string.c $(usertest-srcs)
-microbit-systest-srcs = microbit.lds start-microbit.S string.c $(usertest-srcs)
+microbit-systest-srcs = start-microbit.S string.c $(usertest-srcs)
usertest-a32: $(usertest-srcs)
$(A32GCC) --static -o $@ $^