notmuch/vim/Makefile

15 lines
294 B
Makefile
Raw Normal View History

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