From 544df2f517b639171b0d6b50cdf4193e1217c260 Mon Sep 17 00:00:00 2001 From: Carl Worth Date: Tue, 17 Nov 2009 21:04:31 -0800 Subject: [PATCH] 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). --- Makefile.local | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile.local b/Makefile.local index f824bed1..a26ece2c 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 -- 2.43.0