blob: 3593740de34f13a450b2cfc1c591b7a297d9f00f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
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) $@
clean :
rm -f $(TARGETS)
|