From 26b4cc4aad93e25dab1e1f38f19f1ae69cde389c Mon Sep 17 00:00:00 2001 From: Cédric Cabessa Date: Sun, 23 Jan 2011 14:33:43 +0100 Subject: configure: add options to disable emacs/zsh/bash and choose install dir. add --bashcompletiondir and --zshcompletiondir (like --emacslispdir) to choose installation dir for bash/zsh completion files Make some features optional: --without-emacs / --with-emacs=no do not install lisp file --without-bash-completion / --with-bash-completion=no do not install bash files --without-zsh-completion / --with-zsh-completion=no do not install zsh files By default, everything is enabled. You can reenable something with --with-feature=yes --- Makefile.local | 2 ++ 1 file changed, 2 insertions(+) (limited to 'Makefile.local') diff --git a/Makefile.local b/Makefile.local index f9b5a9b3..3c6151cf 100644 --- a/Makefile.local +++ b/Makefile.local @@ -277,6 +277,7 @@ ifeq ($(MAKECMDGOALS), install) @echo "through the process of configuring notmuch and creating" @echo "a database of existing email messages. The \"notmuch\"" @echo "command will also offer some sample search commands." +ifeq ($(WITH_EMACS), 1) @echo "" @echo "Beyond the command-line interface, notmuch also offers" @echo "a full-featured interface for reading and writing mail" @@ -288,6 +289,7 @@ ifeq ($(MAKECMDGOALS), install) @echo "And then run emacs as \"emacs -f notmuch\" or invoke" @echo "the command \"M-x notmuch\" from within emacs." endif +endif .PHONY: install-desktop install-desktop: -- cgit v1.2.3