blob: a2926581ead045734d13f1e0710218eea034d7ae (
plain) (
tree)
|
|
.POSIX:
include ../common.mk
install:
test -d config
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
|