summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authormillert <millert@openbsd.org>2003-06-23 19:04:36 +0000
committermillert <millert@openbsd.org>2003-06-23 19:04:36 +0000
commitf83c2ced9f72b989387ed48441f2c510b0fb7f1f (patch)
treebc6a65924ca518fc865d8b07aeaaba2818d32d9f
parentMake zmore read from stdin when no files are specified and try to (diff)
downloadwireguard-openbsd-f83c2ced9f72b989387ed48441f2c510b0fb7f1f.tar.xz
wireguard-openbsd-f83c2ced9f72b989387ed48441f2c510b0fb7f1f.zip
install zmore
-rw-r--r--usr.bin/compress/Makefile11
1 files changed, 9 insertions, 2 deletions
diff --git a/usr.bin/compress/Makefile b/usr.bin/compress/Makefile
index 91186e04631..751abbe428e 100644
--- a/usr.bin/compress/Makefile
+++ b/usr.bin/compress/Makefile
@@ -1,8 +1,8 @@
-# $OpenBSD: Makefile,v 1.12 2003/06/22 15:22:43 deraadt Exp $
+# $OpenBSD: Makefile,v 1.13 2003/06/23 19:04:36 millert Exp $
PROG= compress
SRCS= main.c zopen.c gzopen.c
-MAN= compress.1
+MAN= compress.1 zmore.1
LINKS= ${BINDIR}/compress ${BINDIR}/uncompress \
${BINDIR}/compress ${BINDIR}/zcat \
${BINDIR}/compress ${BINDIR}/gzip \
@@ -17,4 +17,11 @@ MLINKS= compress.1 uncompress.1 \
LDADD=-lz
DPADD=${LIBZ}
+afterinstall:
+ install -c -o ${BINOWN} -g ${BINGRP} -m ${BINMODE} \
+ ${.CURDIR}/zmore ${DESTDIR}${BINDIR}
+# ${.CURDIR}/zmore ${.CURDIR}/zdiff \
+# ${.CURDIR}/zforce ${.CURDIR}/gzexe ${.CURDIR}/znew \
+# ${DESTDIR}${BINDIR}
+
.include <bsd.prog.mk>