aboutsummaryrefslogtreecommitdiffhomepage
path: root/Makefile
diff options
context:
space:
mode:
authorGravatar Carl Worth <cworth@cworth.org>2009-11-06 09:33:44 -0800
committerGravatar Carl Worth <cworth@cworth.org>2009-11-06 09:33:44 -0800
commit73ee42be369673d8788f1f8eafdc969d56ce9c4f (patch)
tree2018f52653e4019ab1add460847ea04278de39f6 /Makefile
parent508d2d2ff7bacb0b39563d233e9271fd8113b67c (diff)
Makefile: Fix install target to depend on the all target.
Otherwise, it would just fail if you hadn't run "make" already.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 8fa81c61..280b5566 100644
--- a/Makefile
+++ b/Makefile
@@ -45,7 +45,7 @@ Makefile.dep: *.c *.cc
notmuch.1.gz:
gzip --stdout notmuch.1 > notmuch.1.gz
-install: notmuch.1.gz
+install: all notmuch.1.gz
install -C -D notmuch $(DESTDIR)/usr/bin/notmuch
install -C -D notmuch.1.gz $(DESTDIR)/usr/share/man/man1
install -C -D notmuch-completion.bash \