aboutsummaryrefslogtreecommitdiffstats
path: root/libcontacts/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'libcontacts/Makefile')
-rw-r--r--libcontacts/Makefile15
1 files changed, 15 insertions, 0 deletions
diff --git a/libcontacts/Makefile b/libcontacts/Makefile
new file mode 100644
index 0000000..7b7ad08
--- /dev/null
+++ b/libcontacts/Makefile
@@ -0,0 +1,15 @@
+.POSIX:
+
+install:
+ mkdir -p -- ~/.config
+ if test ! -L ~/.config/contacts; then \
+ test ! -e ~/.config/contacts && \
+ ln -sf -- ~/.dotfiles/libcontacts/contacts ~/.config/contacts; \
+ else \
+ test "$(readlink ~/.config/contacts)" = ~/.dotfiles/libcontacts/contacts; \
+ fi
+
+uninstall:
+ -unlink -- ~/.config/contacts
+
+.PHONY: install uninstall