From 30d2c7241d3cfe9c5628e1b8ac924fa13c8c7913 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 d06d7a6..84a2dff 100644 --- a/Makefile +++ b/Makefile @@ -58,7 +58,7 @@ endif all: $(BIN) modules $(BIN): $(OBJS) - $(CXX) $(OBJS) $(LDFLAGS) $(LDLIBS) -o $(BIN) + $(CXX) $(OBJS) $(LDFLAGS) -o $(BIN) $(LDLIBS) %.o %.d: %.cpp $(CXX) $(CXXFLAGS) -MMD -MP -MT $@ -MF $*.d -c $<