.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

bootstrap:
	sh ./install.sh