From: Simon Ruderich Date: Tue, 17 Feb 2009 15:18:21 +0000 (+0100) Subject: Add setup support. X-Git-Url: https://ruderich.org/simon/gitweb/?p=config%2Fdotfiles.git;a=commitdiff_plain;h=3efc5408879f922b2070ff9239e42a5d37220cb0 Add setup support. The Makefile contains a setup target which runs setup in the subdirectories. --- diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..11cf95b --- /dev/null +++ b/Makefile @@ -0,0 +1,15 @@ +# Makefile for the dotfiles directory where most configuration files are +# stored. + + +# Run setup in all configuration directories. Ignore errors as some of the +# directories may not be present. +.PHONY: setup +setup: + -cd browser && make setup > /dev/null + -cd lftp && make setup > /dev/null + -cd mail && make setup > /dev/null + -cd music && make setup > /dev/null + -cd shell && make setup > /dev/null + -cd vcs && make setup > /dev/null + -cd vim && make setup > /dev/null