summaryrefslogtreecommitdiff
path: root/Makefile.local
diff options
context:
space:
mode:
authorCarl Worth <cworth@cworth.org>2009-11-17 21:04:31 -0800
committerCarl Worth <cworth@cworth.org>2009-11-17 21:04:31 -0800
commit544df2f517b639171b0d6b50cdf4193e1217c260 (patch)
treea447ac0fc9f47c523bd75d69674cc5111dc486d2 /Makefile.local
parent333486572517d2e2084d66208de59085f21d8573 (diff)
Makefile: Fix missing dependency for notmuch.1 manual page.
The Makefile was failing to regnerate the notmuch.1.gz file when notmuch.1 was updated, (so stale documentation could potentially be installed).
Diffstat (limited to 'Makefile.local')
-rw-r--r--Makefile.local4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile.local b/Makefile.local
index f824bed..a26ece2 100644
--- a/Makefile.local
+++ b/Makefile.local
@@ -1,4 +1,4 @@
-all: notmuch
+all: notmuch notmuch.1.gz
notmuch_client_srcs = \
notmuch.c \
@@ -20,7 +20,7 @@ notmuch_client_modules = $(notmuch_client_srcs:.c=.o)
notmuch: $(notmuch_client_modules) lib/notmuch.a
$(CC) $(LDFLAGS) $^ -o $@
-notmuch.1.gz:
+notmuch.1.gz: notmuch.1
gzip --stdout notmuch.1 > notmuch.1.gz
install: all notmuch.1.gz