summaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile10
1 files changed, 9 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index bc99590..b17dcf4 100644
--- a/Makefile
+++ b/Makefile
@@ -1,4 +1,4 @@
-VERSION = git-20141001
+VERSION = git-20141024
PREFIX = /usr/local
MANPREFIX = $(PREFIX)/share/man
@@ -16,6 +16,14 @@ all: sxiv
$(OBJ): Makefile config.h
+depend: .depend
+
+.depend: $(SRC)
+ rm -f ./.depend
+ $(CC) $(CFLAGS) -MM $^ >./.depend
+
+include .depend
+
.c.o:
$(CC) $(CFLAGS) $(CPPFLAGS) -DVERSION=\"$(VERSION)\" -c -o $@ $<