From 9b6acc781e3fc2994bde60db397cfd82e2e050d1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bert=20M=C3=BCnnich?= Date: Mon, 11 Sep 2017 17:09:26 +0200 Subject: [PATCH] Fix linker command line --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 20d6206..8a893c6 100644 --- a/Makefile +++ b/Makefile @@ -34,7 +34,7 @@ config.h: sxiv: $(OBJ) @echo "LINK $@" - $(CC) $(LDFLAGS) -o $@ $(OBJ) $(LDLIBS) + $(CC) $(LDFLAGS) -o $@ $^ $(LDLIBS) clean: rm -f $(OBJ) $(DEP) sxiv