From: Simon Ruderich Date: Wed, 18 Feb 2009 17:38:42 +0000 (+0100) Subject: Use setup.sh instead of Makefile for setup process. X-Git-Url: https://ruderich.org/simon/gitweb/?p=config%2Fdotfiles.git;a=commitdiff_plain;h=d8a0f9c93141fac4a92393a7dd6ffe9e98ef147b Use setup.sh instead of Makefile for setup process. It is much easier to extend in the future. --- diff --git a/Makefile b/Makefile deleted file mode 100644 index cb56ef1..0000000 --- a/Makefile +++ /dev/null @@ -1,11 +0,0 @@ -# Makefile for Vim configuration files. - - -# Generate necessary files and create symbolic links in ~/. -LINK=../link.sh -.PHONY: setup -setup: - # Link setup. - $(LINK) vim ~/.vim - $(LINK) vimrc ~/.vimrc - $(LINK) gvimrc ~/.gvimrc diff --git a/setup.sh b/setup.sh new file mode 100755 index 0000000..96724e9 --- /dev/null +++ b/setup.sh @@ -0,0 +1,9 @@ +# Setup script for Vim configuration files. + + +. ../lib.sh + +# Link setup. +link vim ~/.vim +link vimrc ~/.vimrc +link gvimrc ~/.gvimrc