2010-04-06 20:02:09 +02:00
|
|
|
# -*- 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.
|
2011-03-10 00:02:42 +01:00
|
|
|
bash_script := $(srcdir)/$(dir)/notmuch-completion.bash
|
|
|
|
zsh_script := $(srcdir)/$(dir)/notmuch-completion.zsh
|
2010-04-06 20:02:09 +02:00
|
|
|
|
|
|
|
install: install-$(dir)
|
|
|
|
|
|
|
|
install-$(dir):
|
|
|
|
@echo $@
|
2011-01-23 14:33:43 +01:00
|
|
|
ifeq ($(WITH_BASH),1)
|
2011-01-26 14:29:15 +01:00
|
|
|
mkdir -p "$(DESTDIR)$(bash_completion_dir)"
|
|
|
|
install -m0644 $(bash_script) "$(DESTDIR)$(bash_completion_dir)/notmuch"
|
2011-01-23 14:33:43 +01:00
|
|
|
endif
|
|
|
|
ifeq ($(WITH_ZSH),1)
|
2011-01-26 14:29:15 +01:00
|
|
|
mkdir -p "$(DESTDIR)$(zsh_completion_dir)"
|
|
|
|
install -m0644 $(zsh_script) "$(DESTDIR)$(zsh_completion_dir)/_notmuch"
|
2011-01-23 14:33:43 +01:00
|
|
|
endif
|