]> git.notmuchmail.org Git - notmuch/blob - vim/Makefile
emacs: Add new option notmuch-search-hide-excluded
[notmuch] / vim / Makefile
1 prefix = $(HOME)/.vim
2
3 INSTALL = install -v -D -m644
4 D = $(DESTDIR)
5
6 all:
7         @echo "Nothing to build"
8
9 install:
10         $(INSTALL) $(CURDIR)/notmuch.vim $(D)$(prefix)/plugin/notmuch.vim
11         $(INSTALL) $(CURDIR)/notmuch.txt $(D)$(prefix)/doc/notmuch.txt
12         @$(foreach file,$(wildcard syntax/*), \
13                 $(INSTALL) $(CURDIR)/$(file) $(D)$(prefix)/$(file);)
14
15 .PHONY: all install