Install man page

weechat-hashes
Curtis McEnroe 2018-09-10 16:18:36 -04:00
parent 24b1d1f3d5
commit 45132a555c
No known key found for this signature in database
GPG Key ID: CEA2F97ADCFCD77C
1 changed files with 11 additions and 7 deletions

View File

@ -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