-.PHONY: install update
+APATH := $(realpath .)
-install:
- cp -f bashrc ~/.bashrc
- cp -f bash_aliases ~/.bash_aliases
- cp -f bash_colors ~/.bash_colors
- cp -f bash_logout ~/.bash_logout
- cp -f flexget/config.yml ~/.flexget/config.yml
- cp -f vimrc ~/.vimrc
+FILES := bin
+DOTFILES := conky* git* goobookrc msmtp* mutt ncmpcpp profile weechat xbindkeysrc Xresources xprofile zprofile zshenv zshrc
+CONFIGFILES := aliases compton.conf git mimeo.conf mpd offlineimap ranger retroarch systemd vim xkb zsh
-update:
- cp -f ~/.bashrc bashrc
- cp -f ~/.bash_aliases bash_aliases
- cp -f ~/.bash_colors bash_colors
- cp -f ~/.bash_logout bash_logout
- cp -f ~/.flexget/config.yml flexget/config.yml
- cp -f ~/.vimrc vimrc
+.PHONY: install $(FILES) $(DOTFILES) $(CONFIGFILES)
+install: $(FILES) $(DOTFILES) $(CONFIGFILES)
+
+$(FILES):
+ @if [[ -e ~/$@ && ! -L ~/$@ ]]; then \
+ if [[ -d $@ ]]; then \
+ cp -r ~/$@/* $@; \
+ else \
+ cp -r ~/$@ $@; \
+ fi; \
+ rm -r ~/$@; \
+ fi;
+ ln -sfT $(APATH)/$@ ~/$@
+
+$(DOTFILES):
+ @if [[ -e ~/.$@ && ! -L ~/.$@ ]]; then \
+ if [[ -d .$@ ]]; then \
+ cp -r ~/.$@/* $@; \
+ else \
+ cp -r ~/.$@ $@; \
+ fi; \
+ rm -r ~/.$@; \
+ fi;
+ ln -sfT $(APATH)/$@ ~/.$@
+
+$(CONFIGFILES):
+ @if [[ -e ~/.config/$@ && ! -L ~/.config/$@ ]]; then \
+ if [[ -d .config/$@ ]]; then \
+ cp -r ~/.config/$@/* $@; \
+ else \
+ cp -r ~/.config/$@ $@; \
+ fi; \
+ rm -r ~/.config/$@; \
+ fi;
+ ln -sfT $(APATH)/$@ ~/.config/$@