X-Git-Url: https://git.notmuchmail.org/git?p=notmuch;a=blobdiff_plain;f=Makefile;h=64b9d4aa3507c0a6ae30d3cd685703693d19c90f;hp=d112be6adf3c90d105398f3cc6d501419041d429;hb=7a9bacac6786729d7f28495b0ef30f9b6ded7696;hpb=943f415f81207ea00bf1efe8c2c1cbf13a094a56 diff --git a/Makefile b/Makefile index d112be6a..64b9d4aa 100644 --- a/Makefile +++ b/Makefile @@ -8,6 +8,7 @@ EMACS ?= emacs gzip = gzip bash_completion_dir = /etc/bash_completion.d +zsh_completion_dir = /usr/share/zsh/functions/Completion/Unix all_deps = Makefile Makefile.local Makefile.config \ lib/Makefile lib/Makefile.local @@ -25,6 +26,12 @@ all: notmuch notmuch.1.gz # Before including any other Makefile fragments, get settings from the # output of configure Makefile.config: configure + @echo "" + @echo "Note: Calling ./configure with no command-line arguments. This is often fine," + @echo " but if you want to specify any arguments (such as an alternate prefix" + @echo " into which to install), call ./configure explicitly and then make again." + @echo " See \"./configure --help\" for more details." + @echo "" ./configure include Makefile.config @@ -57,13 +64,13 @@ quiet ?= $($1) .deps/%.d: %.c $(all_deps) @set -e; rm -f $@; mkdir -p $$(dirname $@) ; \ - $(CC) -M $(CPPFLAGS) $(FINAL_CFLAGS) $< > $@.$$$$; \ + $(CC) -M $(CPPFLAGS) $(FINAL_CFLAGS) $< > $@.$$$$ 2>/dev/null ; \ sed 's,'$$(basename $*)'\.o[ :]*,$*.o $@ : ,g' < $@.$$$$ > $@; \ rm -f $@.$$$$ .deps/%.d: %.cc $(all_deps) @set -e; rm -f $@; mkdir -p $$(dirname $@) ; \ - $(CXX) -M $(CPPFLAGS) $(FINAL_CXXFLAGS) $< > $@.$$$$; \ + $(CXX) -M $(CPPFLAGS) $(FINAL_CXXFLAGS) $< > $@.$$$$ 2>/dev/null ; \ sed 's,'$$(basename $*)'\.o[ :]*,$*.o $@ : ,g' < $@.$$$$ > $@; \ rm -f $@.$$$$