From: Simon Ruderich Date: Sun, 15 Feb 2009 17:26:53 +0000 (+0100) Subject: Add setup support. X-Git-Url: https://ruderich.org/simon/gitweb/?p=config%2Fdotfiles.git;a=commitdiff_plain;h=39a1c08e2c97a204af046e4da4c769cb0ca03433 Add setup support. The Makefile contains a setup target which creates all necessary symbolic links in ~/. --- diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..6bae053 --- /dev/null +++ b/Makefile @@ -0,0 +1,12 @@ +# Makefile for VCS configuration files. + + +# Generate necessary files and create symbolic links in ~/. +LINK=../link.sh +.PHONY: setup +setup: + # Link setup. + $(LINK) gitconfig ~/.gitconfig + $(LINK) gitignore ~/.gitignore + $(LINK) hgrc ~/.hgrc + $(LINK) hgignore ~/.hgignore