summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorC. McEnroe2020-05-23 14:12:07 -0400
committerC. McEnroe2020-05-23 19:14:47 -0400
commitfd679bbca8ad24c0ddd69e3d2018fbbe4bb8e54d (patch)
tree1d61e17c85746106154fc37c18e2ab29014d8162 /Makefile
parent4282574c187e8ee7b0da98061a355b7c0c71b50d (diff)
Don't compress man page or use configure on FreeBSD
Also use DESTDIR in install.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile23
1 files changed, 13 insertions, 10 deletions
diff --git a/Makefile b/Makefile
index 68e673b..f5c9854 100644
--- a/Makefile
+++ b/Makefile
@@ -1,9 +1,12 @@
PREFIX = /usr/local
MANDIR = ${PREFIX}/share/man
+CFLAGS += -I${PREFIX}/include
+LDFLAGS += -L${PREFIX}/lib
+
CEXTS = gnu-case-range gnu-conditional-omitted-operand
CFLAGS += -std=c11 -Wall -Wextra -Wpedantic ${CEXTS:%=-Wno-%}
-LDLIBS = -lcrypto -ltls -lncursesw
+LDLIBS = -lncursesw -ltls
-include config.mk
@@ -36,23 +39,23 @@ clean:
rm -f tags catgirl ${OBJS}
install: catgirl catgirl.1
- install -d ${PREFIX}/bin ${MANDIR}/man1
- install catgirl ${PREFIX}/bin
- gzip -c catgirl.1 > ${MANDIR}/man1/catgirl.1.gz
+ install -d ${DESTDIR}${PREFIX}/bin ${DESTDIR}${MANDIR}/man1
+ install catgirl ${DESTDIR}${PREFIX}/bin
+ install -m 644 catgirl.1 ${DESTDIR}${MANDIR}/man1
uninstall:
- rm -f ${PREFIX}/bin/catgirl ${MANDIR}/man1/catgirl.1.gz
+ rm -f ${DESTDIR}${PREFIX}/bin/catgirl ${DESTDIR}${MANDIR}/man1/catgirl.1
scripts/sandman: scripts/sandman.o
${CC} ${LDFLAGS} scripts/sandman.o -framework Cocoa -o $@
install-sandman: scripts/sandman scripts/sandman.1
- install -d ${PREFIX}/bin ${MANDIR}/man1
- install scripts/sandman ${PREFIX}/bin
- gzip -c scripts/sandman.1 > ${MANDIR}/man1/sandman.1.gz
+ install -d ${DESTDIR}${PREFIX}/bin ${DESTDIR}${MANDIR}/man1
+ install scripts/sandman ${DESTDIR}${PREFIX}/bin
+ install -m 644 scripts/sandman.1 ${DESTDIR}${MANDIR}/man1
uninstall-sandman:
- rm -f ${PREFIX}/bin/sandman ${MANDIR}/man1/sandman.1.gz
+ rm -f ${DESTDIR}${PREFIX}/bin/sandman ${DESTDIR}${MANDIR}/man1/sandman.1
CHROOT_USER = chat
CHROOT_GROUP = ${CHROOT_USER}
@@ -87,7 +90,7 @@ chroot.tar: catgirl catgirl.1 scripts/chroot-prompt.sh scripts/chroot-man.sh
cp -af /usr/share/locale root/usr/share
cp -fp /usr/share/misc/termcap.db root/usr/share/misc
cp -fp /rescue/sh /usr/bin/mandoc /usr/bin/less root/bin
- ${MAKE} install PREFIX=root/usr
+ ${MAKE} install DESTDIR=root PREFIX=/usr
install scripts/chroot-prompt.sh root/usr/bin/catgirl-prompt
install scripts/chroot-man.sh root/usr/bin/man
tar -c -f chroot.tar -C root bin etc home lib libexec usr