summary refs log tree commit diff
path: root/Makefile
diff options
context:
space:
mode:
authorJune McEnroe <june@causal.agency>2018-09-10 16:18:36 -0400
committerJune McEnroe <june@causal.agency>2018-09-10 16:18:36 -0400
commit45132a555c1843f9e707afd7a1ee698ac28f0e8e (patch)
treecc08874c3d35f660a96cc1e4da3b4733ab08a6fd /Makefile
parentSplit keys into subsections and document colors (diff)
downloadcatgirl-45132a555c1843f9e707afd7a1ee698ac28f0e8e.tar.gz
catgirl-45132a555c1843f9e707afd7a1ee698ac28f0e8e.zip
Install man page
Diffstat (limited to '')
-rw-r--r--Makefile18
1 files changed, 11 insertions, 7 deletions
diff --git a/Makefile b/Makefile
index 9ec7b26..18aa828 100644
--- a/Makefile
+++ b/Makefile
@@ -1,5 +1,6 @@
-LIBRESSL_PREFIX = /usr/local /usr/local/opt/libressl
 PREFIX = ~/.local
+MANPATH = $(PREFIX)/share/man
+LIBRESSL_PREFIX = /usr/local /usr/local/opt/libressl
 CHROOT_USER = chat
 CHROOT_GROUP = $(CHROOT_USER)
 
@@ -32,6 +33,15 @@ $(OBJS): chat.h
 tags: *.h *.c
 	ctags -w *.h *.c
 
+install: chatte chatte.1
+	install -d $(PREFIX)/bin $(MANPATH)/man1
+	install chatte $(PREFIX)/bin/chatte
+	install -m 644 chatte.1 $(MANPATH)/man1/chatte.1
+
+uninstall:
+	rm -f $(PREFIX)/bin/chatte
+	rm -f $(MANPATH)/man1/chatte.1
+
 chroot.tar: chatte
 	mkdir -p root
 	install -d -o root -g wheel \
@@ -67,9 +77,3 @@ chroot.tar: chatte
 
 clean:
 	rm -f tags chatte $(OBJS) chroot.tar
-
-install: chatte
-	install chatte $(PREFIX)/bin/chatte
-
-uninstall:
-	rm -f $(PREFIX)/bin/chatte