INTO = $(HOME) INSTALL = \ aspell.en.pws \ bashrc \ ctags \ emacs.d \ gitconfig \ gitignore \ tmux.conf \ vim \ vimrc INSTALLED = $(patsubst %,$(INTO)/.%,$(INSTALL)) LN = @ln -sf $(INTO)/.% : % @[ ! -e $@ ] || [ -h $@ ] || mv -f $@ $@.bak $(LN) $(PWD)/$< $@ $(HOME)/.ssh/authorized_keys: @curl https://github.com/fcuny.keys -o $(HOME)/.ssh/authorized_keys $(HOME)/workspace: @mkdir -p $(HOME)/workspace/ $(PWD)/vim/autoload/plug.vim: @curl -fLo $(PWD)/vim/autoload/plug.vim --create-dirs https://raw.githubusercontent.com/junegunn/vim-plug/master/plug.vim .PHONY: git git: @git config --local user.email "franck.cuny@gmail.com" @git config --local user.name "Franck Cuny" .PHONY: check-dead check-dead: @find ~ -maxdepth 1 -name '.*' -type l -exec test ! -e {} \; -print .PHONY: clean-dead clean-dead: @find ~ -maxdepth 1 -name '.*' -type l -exec test ! -e {} \; -delete .PHONY: install install: $(INSTALLED) $(HOME)/workspace $(HOME)/.ssh/authorized_keys $(PWD)/vim/autoload/plug.vim