summaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorBert <ber.t@gmx.com>2011-06-28 19:18:05 +0200
committerBert <ber.t@gmx.com>2011-06-28 19:18:05 +0200
commitfe281548fc172f0416667e221d097691ab71ee44 (patch)
tree964f97362766e1833ba6c615556596529eb78d64 /Makefile
parent2e1d752777cbd4144498e28869fa5795f93f4103 (diff)
downloadnsxiv-fe281548fc172f0416667e221d097691ab71ee44.tar.zst
Fixed Makefile
Diffstat (limited to 'Makefile')
-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 $@ $<