mirror of
https://git.notmuchmail.org/git/notmuch
synced 2024-11-21 18:38:08 +01:00
26b4cc4aad
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
22 lines
654 B
Makefile
22 lines
654 B
Makefile
# -*- makefile -*-
|
|
|
|
dir := completion
|
|
|
|
# The dir variable will be re-assigned to later, so we can't use it
|
|
# directly in any shell commands. Instead we save its value in other,
|
|
# private variables that we can use in the commands.
|
|
bash_script := $(dir)/notmuch-completion.bash
|
|
zsh_script := $(dir)/notmuch-completion.zsh
|
|
|
|
install: install-$(dir)
|
|
|
|
install-$(dir):
|
|
@echo $@
|
|
ifeq ($(WITH_BASH),1)
|
|
mkdir -p $(DESTDIR)$(bash_completion_dir)
|
|
install -m0644 $(bash_script) $(DESTDIR)$(bash_completion_dir)/notmuch
|
|
endif
|
|
ifeq ($(WITH_ZSH),1)
|
|
mkdir -p $(DESTDIR)$(zsh_completion_dir)
|
|
install -m0644 $(zsh_script) $(DESTDIR)$(zsh_completion_dir)/notmuch
|
|
endif
|