From 9df8373b9467090b03c9ca686bb45954395f4506 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 e7fb94b..cd45349 100644 --- a/Makefile +++ b/Makefile @@ -28,7 +28,7 @@ LDFLAGS := all: $(BIN) $(BIN): $(OBJS) $(DEPS) - $(CXX) $(OBJS) $(LDFLAGS) $(LDLIBS) -o $(BIN) + $(CXX) $(OBJS) $(LDFLAGS) -o $(BIN) $(LDLIBS) %.o: %.cpp %.d Makefile $(CXX) $(CXXFLAGS) -MMD -MP -MT $@ -MF $*.d -c $<