summaryrefslogtreecommitdiff
path: root/.tmux/Makefile
blob: bb4db434063406f3ee622c361cafba4ecb3118d4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
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)