summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
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 $@ $<