mirror of
https://git.notmuchmail.org/git/notmuch
synced 2024-11-22 19:08:09 +01:00
15 lines
294 B
Makefile
15 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
|