aboutsummaryrefslogtreecommitdiffstats
path: root/rotd/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'rotd/Makefile')
-rw-r--r--rotd/Makefile15
1 files changed, 15 insertions, 0 deletions
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