From c19ffb3564d916b593a7ae4941eb51004b4b9028 Mon Sep 17 00:00:00 2001 From: Bob Polis Date: Thu, 28 Mar 2024 15:25:10 +0100 Subject: [PATCH] Fix LDLIBS linker errors --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 8e75b3d..aecc4bd 100644 --- a/Makefile +++ b/Makefile @@ -50,7 +50,7 @@ src/commit.inc: echo 'const char* commit = "";' > $@ $(OUTDIR)$(BIN): $(OBJS) - $(CXX) -o $(OUTDIR)$(BIN) $(LDFLAGS) $(LDLIBS) $(addprefix $(BUILDDIR),$(OBJS)) + $(CXX) -o $(OUTDIR)$(BIN) $(LDFLAGS) $(addprefix $(BUILDDIR),$(OBJS)) $(LDLIBS) @ln -sf $(OUTDIR)$(BIN) $(BIN) %.o %.dep: %.cpp