aboutsummaryrefslogtreecommitdiff
path: root/vim/.vim/bundle/colorizer/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'vim/.vim/bundle/colorizer/Makefile')
-rw-r--r--vim/.vim/bundle/colorizer/Makefile12
1 files changed, 12 insertions, 0 deletions
diff --git a/vim/.vim/bundle/colorizer/Makefile b/vim/.vim/bundle/colorizer/Makefile
new file mode 100644
index 0000000..7f91e3b
--- /dev/null
+++ b/vim/.vim/bundle/colorizer/Makefile
@@ -0,0 +1,12 @@
+.PHONY: all clean install uninstall
+DOTVIM=$(HOME)/.vim
+FILES=plugin/colorizer.vim autoload/colorizer.vim
+
+all:
+ @echo "Available phony targets: install, uninstall"
+
+install:
+ for f in $(FILES); do install -m644 $$f $(DOTVIM)/$$f; done
+
+uninstall:
+ rm -f $(FILES)