aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile10
1 files changed, 10 insertions, 0 deletions
diff --git a/Makefile b/Makefile
index fd08950d..345952cd 100644
--- a/Makefile
+++ b/Makefile
@@ -43,6 +43,7 @@
install-vim-after-indent \
install-vim-after-plugin \
install-vim-after-syntax \
+ install-vim-autoload \
install-vim-bundle \
install-vim-compiler \
install-vim-config \
@@ -491,6 +492,7 @@ VIMDIR = $(HOME)/.vim
VIMRC = $(HOME)/.vimrc
install-vim: install-vim-after \
+ install-vim-autoload \
install-vim-bundle \
install-vim-compiler \
install-vim-config \
@@ -522,6 +524,14 @@ install-vim-after-syntax:
mkdir -p $(VIMDIR)/after/syntax
cp -p -- vim/after/syntax/*.vim $(VIMDIR)/after/syntax
+install-vim-autoload:
+ find vim/autoload \
+ -type d -exec sh -c \
+ 'mkdir -- $(VIMDIR)/"$${1#vim/}"' _ {} \; \
+ -o \
+ -type f -exec sh -c \
+ 'cp -p -- "$$1" $(VIMDIR)/"$${1#vim/}"' _ {} \;
+
install-vim-bundle: install-vim-config
find vim/bundle/*/* \
-type d -exec sh -c \