From fe281548fc172f0416667e221d097691ab71ee44 Mon Sep 17 00:00:00 2001 From: Bert Date: Tue, 28 Jun 2011 19:18:05 +0200 Subject: Fixed Makefile --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 1003dcf..bd5e4cc 100644 --- a/Makefile +++ b/Makefile @@ -13,7 +13,7 @@ SRC = image.c main.c options.c thumbs.c util.c window.c OBJ = $(SRC:.c=.o) sxiv: $(OBJ) - $(CC) $(LDFLAGS) -o $@ $^ $(LIBS) + $(CC) $(LDFLAGS) -o $@ $(OBJ) $(LIBS) .c.o: Makefile config.h $(CC) $(CFLAGS) -c -o $@ $< -- cgit v1.2.3-54-g00ecf