aboutsummaryrefslogtreecommitdiff
path: root/vim/Makefile
diff options
context:
space:
mode:
authorFelipe Contreras <felipe.contreras@gmail.com>2013-06-02 19:31:59 -0500
committerFelipe Contreras <felipe.contreras@gmail.com>2013-06-02 19:42:43 -0500
commit138c6aa098fe4236dc334cc55ac4fc414ddb298c (patch)
tree1521462482deec7317ed5234d5a87c1091261842 /vim/Makefile
parentdbc3a247cac72e400efb45250e10eebe64722904 (diff)
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>
Diffstat (limited to 'vim/Makefile')
-rw-r--r--vim/Makefile14
1 files changed, 14 insertions, 0 deletions
diff --git a/vim/Makefile b/vim/Makefile
new file mode 100644
index 00000000..bb3ec608
--- /dev/null
+++ b/vim/Makefile
@@ -0,0 +1,14 @@
+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