diff options
author | Bert <ber.t@gmx.com> | 2011-06-28 19:18:05 +0200 |
---|---|---|
committer | Bert <ber.t@gmx.com> | 2011-06-28 19:18:05 +0200 |
commit | fe281548fc172f0416667e221d097691ab71ee44 (patch) | |
tree | 964f97362766e1833ba6c615556596529eb78d64 | |
parent | 2e1d752777cbd4144498e28869fa5795f93f4103 (diff) |
Fixed Makefile
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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 $@ $< |