dotfiles/Makefile

15 lines
303 B
Makefile
Raw Normal View History

2015-10-24 00:57:07 +02:00
.PHONY: all default dotfiles install
all: dotfiles
default: install
install: all
dotfiles:
# add aliases for dotfiles
for file in $(shell find $(CURDIR) -name ".*" -not -name ".gitignore" -not -name ".git" -not -name ".*.swp"); do \
f=$$(basename $$file); \
ln -sfn $$file $(HOME)/$$f; \
done