blob: b6f9db786faef26e90d7fef9aed2f20797032f75 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
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
$(INSTALL) $(CURDIR)/notmuch.txt $(D)$(prefix)/doc/notmuch.txt
@$(foreach file,$(wildcard syntax/*), \
$(INSTALL) $(CURDIR)/$(file) $(D)$(prefix)/$(file);)
.PHONY: all install
|