From: Carl Worth Date: Fri, 6 Nov 2009 17:33:44 +0000 (-0800) Subject: Makefile: Fix install target to depend on the all target. X-Git-Tag: 0.1~559 X-Git-Url: https://git.cworth.org/git?p=obsolete%2Fnotmuch-old;a=commitdiff_plain;h=73ee42be369673d8788f1f8eafdc969d56ce9c4f Makefile: Fix install target to depend on the all target. Otherwise, it would just fail if you hadn't run "make" already. --- 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 \