From b920816216cb161449dcf03ffe964c667c7b36c2 Mon Sep 17 00:00:00 2001 From: Urbain Vaes Date: Wed, 16 Sep 2015 15:38:58 +0100 Subject: Split install file --- .zsh/Makefile | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 .zsh/Makefile (limited to '.zsh/Makefile') diff --git a/.zsh/Makefile b/.zsh/Makefile new file mode 100644 index 0000000..3593740 --- /dev/null +++ b/.zsh/Makefile @@ -0,0 +1,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) -- cgit v1.2.3