commit 2bed0dd175e573aca14c93b698a92989140008e0 parent d56de6318faef8450770a7d139ac30840296de6a Author: sin <sin@2f30.org> Date: Mon, 22 Aug 2016 11:22:24 +0100 Accept user-defined LDFLAGS in Makefile Diff by Ypnose Diffstat:
M | Makefile | | | 2 | +- |
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git 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