From e33824355b15552203358d6bd54604c82b998d0c Mon Sep 17 00:00:00 2001 From: Bob Polis Date: Thu, 28 Mar 2024 15:25:09 +0100 Subject: [PATCH] Fix LDLIBS linker errors --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 61cd1c3..b37c1ba 100644 --- a/Makefile +++ b/Makefile @@ -21,7 +21,7 @@ endif all: $(BIN) $(BIN): $(OBJS) $(DEPS) - $(CXX) $(LDFLAGS) $(LDLIBS) -o $(BIN) $(OBJS) + $(CXX) $(LDFLAGS) -o $(BIN) $(OBJS) $(LDLIBS) %.o: %.cpp %.d $(CXX) $(CXXFLAGS) -MMD -MP -MT $@ -MF $*.d -c $<