From 56560fd597f94dfe6fe5fa79648398ab29d05775 Mon Sep 17 00:00:00 2001 From: xero Date: Mon, 14 Jul 2014 13:23:05 -0400 Subject: updated repo to manage dotfiles via gnu stow, the symlink farm manager. happy birthday commit! :birthday: :sparkles: --- vim/.vim/bundle/colorizer/Makefile | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 vim/.vim/bundle/colorizer/Makefile (limited to 'vim/.vim/bundle/colorizer/Makefile') 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) -- cgit v1.2.1