diff options
Diffstat (limited to '.zsh')
-rw-r--r-- | .zsh/Makefile | 13 | ||||
-rw-r--r-- | .zsh/tmp | 3 |
2 files changed, 13 insertions, 3 deletions
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) diff --git a/.zsh/tmp b/.zsh/tmp deleted file mode 100644 index aab86c2..0000000 --- a/.zsh/tmp +++ /dev/null @@ -1,3 +0,0 @@ -#!/bin/zsh - -export COLORSCHEME=light |