summaryrefslogtreecommitdiff
path: root/.zsh/Makefile
blob: 0c0aa7f258c197c42205baaac71c7c30882f9fde (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
HOME=/home/urbain
TARGETS=$(addprefix $(HOME)/,.zsh .zshrc)

all : $(TARGETS)

$(HOME)/.zshrc :
	rm -f $@ && ln -s $(PWD)/zshrc $@

$(HOME)/.zsh :
	rm -f $@ && ln -s $(PWD) $@

$(HOME)/.zgen :
	rm -f $@ && ln -s $(PWD)/zgen $@

clean :
	rm -f $(TARGETS)