diff options
Diffstat (limited to '')
-rw-r--r-- | rotd/.gitignore | 1 | ||||
-rw-r--r-- | rotd/Makefile | 15 |
2 files changed, 16 insertions, 0 deletions
diff --git a/rotd/.gitignore b/rotd/.gitignore new file mode 100644 index 0000000..5b8a7b8 --- /dev/null +++ b/rotd/.gitignore @@ -0,0 +1 @@ +/config/ diff --git a/rotd/Makefile b/rotd/Makefile new file mode 100644 index 0000000..5db6e1b --- /dev/null +++ b/rotd/Makefile @@ -0,0 +1,15 @@ +.POSIX: + +install: + mkdir -p -- ~/.config + if test ! -L ~/.config/rotd; then \ + test ! -e ~/.config/rotd && \ + ln -sf -- ~/.dotfiles/rotd/config ~/.config/rotd; \ + else \ + test "$(readlink ~/.config/rotd)" = ~/.dotfiles/rotd/config; \ + fi + +uninstall: + -unlink -- ~/.config/rotd + +.PHONY: install uninstall |