blob: db96d9270a4992ed9668142e02c61ad502716f05 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
.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
|