mirror of
https://git.notmuchmail.org/git/notmuch
synced 2024-11-21 18:38:08 +01:00
42ff2d3a0d
Signed-off-by: Felipe Contreras <felipe.contreras@gmail.com>
15 lines
358 B
Makefile
15 lines
358 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
|
|
$(INSTALL) $(CURDIR)/notmuch.txt $(D)$(prefix)/doc/notmuch.txt
|
|
@$(foreach file,$(wildcard syntax/*), \
|
|
$(INSTALL) $(CURDIR)/$(file) $(D)$(prefix)/$(file);)
|
|
|
|
.PHONY: all install
|