diff options
author | Todd C. Miller <millert@cvs.openbsd.org> | 2003-06-23 19:04:37 +0000 |
---|---|---|
committer | Todd C. Miller <millert@cvs.openbsd.org> | 2003-06-23 19:04:37 +0000 |
commit | 0f299355d31d7905096e1994b9b44e56786c55a3 (patch) | |
tree | 8b838eb33a937838cde03773fb70a6c6068a6549 /usr.bin/compress | |
parent | 4e22c3b1b31fc4dd225bc22d0e16133481add6fe (diff) |
install zmore
Diffstat (limited to 'usr.bin/compress')
-rw-r--r-- | usr.bin/compress/Makefile | 11 |
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> |