notmuch/vim/Makefile
Felipe Contreras 138c6aa098 Add new notmuch vim plugin
The old one was not properly maintained and is now deprecated. The new
one has much better support.

Signed-off-by: Felipe Contreras <felipe.contreras@gmail.com>
2013-06-02 19:42:43 -05:00

14 lines
294 B
Makefile

prefix = $(HOME)/.vim
INSTALL = install -v -D -m644
D = $(DESTDIR)
all:
@echo "Nothing to build"
install:
$(INSTALL) $(CURDIR)/notmuch.vim $(D)$(prefix)/plugin/notmuch.vim
@$(foreach file,$(wildcard syntax/*), \
$(INSTALL) $(CURDIR)/$(file) $(D)$(prefix)/$(file);)
.PHONY: all install