From faad1b072a930b504adfaef4324d8469e1a57502 Mon Sep 17 00:00:00 2001 From: Urbain Vaes Date: Fri, 9 Oct 2015 11:41:37 +0100 Subject: Correct errors in Makefiles --- .zsh/Makefile | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) (limited to '.zsh') diff --git a/.zsh/Makefile b/.zsh/Makefile index 74a4bfc..cbc6388 100644 --- a/.zsh/Makefile +++ b/.zsh/Makefile @@ -9,9 +9,8 @@ $(HOME)/.zshrc : $(HOME)/.zsh : rm -f $@ && ln -s $(PWD) $@ -$(HOME)/.zgen : $(PWD)/zgen - cp -r $(PWD)/zgen $@ +$(HOME)/.zgen : + rm -f $@ && ln -s $(PWD)/zgen $@ clean : - rm -f $(HOME)/.zsh $(HOME)/.zshrc - rm -rf $(HOME)/.zgen + rm -f $(TARGETS) -- cgit v1.2.3