blob: bbe8e6ec9fe28541dcf15cc20a9b509ed8e6a063 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
HOME=/home/urbain
TARGETS=$(addprefix $(HOME)/,.tmux.conf .tmux/plugins/tpm)
all : $(TARGETS)
$(HOME)/.tmux.conf :
rm -f $@ && ln -s $(PWD)/tmux.conf $@
$(HOME)/.tmux/plugins/tpm :
mkdir -p $(HOME)/.tmux/plugins
rm -f $@ && ln -s $(PWD)/tpm $@
clean :
rm -f $(TARGETS)
rm -rf $(HOME)/.tmux
|