From 2bed0dd175e573aca14c93b698a92989140008e0 Mon Sep 17 00:00:00 2001 From: sin Date: Mon, 22 Aug 2016 11:22:24 +0100 Subject: [PATCH] Accept user-defined LDFLAGS in Makefile Diff by Ypnose --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 9035141d..d49b6fbb 100644 --- a/Makefile +++ b/Makefile @@ -15,7 +15,7 @@ BIN = noice all: $(BIN) $(BIN): $(OBJ) - $(CC) $(CFLAGS) -o $@ $(OBJ) $(LDLIBS) + $(CC) $(CFLAGS) -o $@ $(OBJ) $(LDFLAGS) $(LDLIBS) noice.o: util.h config.h strlcat.o: util.h -- 2.48.1