Attempting to carve out a sensible chunk of stuff for a dotfiles repo.

Sure hope I didn't miss any super secret crap :-P
This commit is contained in:
Dan Buch
2012-02-26 14:38:01 -05:00
commit a8cd5a2fe9
51 changed files with 7951 additions and 0 deletions

10
Makefile Normal file
View File

@@ -0,0 +1,10 @@
TARGETS = $(patsubst %,$(HOME)/.%,$(shell ls -d * | grep -v '.d'))
$(HOME)/.%: %
rsync -avz $^ $@
all: $(TARGETS)
mkdir -p $(HOME)/.bash_completion.d
rsync -avz bash_completion.d/ $(HOME)/.bash_completion.d
.PHONY: all