summaryrefslogtreecommitdiff
path: root/.zsh/Makefile
diff options
context:
space:
mode:
Diffstat (limited to '.zsh/Makefile')
-rw-r--r--.zsh/Makefile17
1 files changed, 0 insertions, 17 deletions
diff --git a/.zsh/Makefile b/.zsh/Makefile
deleted file mode 100644
index 74a4bfc..0000000
--- a/.zsh/Makefile
+++ /dev/null
@@ -1,17 +0,0 @@
-HOME=/home/urbain
-TARGETS=$(addprefix $(HOME)/,.zsh .zshrc .zgen)
-
-all : $(TARGETS)
-
-$(HOME)/.zshrc :
- rm -f $@ && ln -s $(PWD)/zshrc $@
-
-$(HOME)/.zsh :
- rm -f $@ && ln -s $(PWD) $@
-
-$(HOME)/.zgen : $(PWD)/zgen
- cp -r $(PWD)/zgen $@
-
-clean :
- rm -f $(HOME)/.zsh $(HOME)/.zshrc
- rm -rf $(HOME)/.zgen