a8cd5a2fe9
Sure hope I didn't miss any super secret crap :-P
11 lines
225 B
Makefile
11 lines
225 B
Makefile
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
|