diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 1995-12-14 03:43:23 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 1995-12-14 03:43:23 +0000 |
commit | dbe663f3bcf2e6de61a425a272724ba95c623820 (patch) | |
tree | 840bcdcaecf8f9cdea0099656a0f92d59164a7db /gnu/usr.bin/gzip | |
parent | 5f7d1fd49707aedcb8f7d4c564bb24e17082c54d (diff) |
update from netbsd; parallel make stuff
Diffstat (limited to 'gnu/usr.bin/gzip')
-rw-r--r-- | gnu/usr.bin/gzip/Makefile | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/gnu/usr.bin/gzip/Makefile b/gnu/usr.bin/gzip/Makefile index 706725da795..b8fa10a85c6 100644 --- a/gnu/usr.bin/gzip/Makefile +++ b/gnu/usr.bin/gzip/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.16 1995/04/23 07:58:45 cgd Exp $ +# $NetBSD: Makefile,v 1.17 1995/10/24 22:18:34 jtc Exp $ PROG= gzip SRCS= gzip.c zip.c deflate.c trees.c bits.c unzip.c inflate.c util.c \ @@ -15,12 +15,14 @@ LDSTATIC= -static LDADD+= -lgnumalloc DPADD+= /usr/lib/libgnumalloc.a -MLINKS= gzip.1 gunzip.1 gzip.1 gzcat.1 gzip.1 zcat.1 +MLINKS+= gzip.1 gunzip.1 gzip.1 gzcat.1 gzip.1 zcat.1 +MLINKS+= zdiff.1 zcmp.1 #MLINKS+= gzip.1 uncompress.1 LINKS+= ${BINDIR}/gzip ${BINDIR}/gunzip LINKS+= ${BINDIR}/gzip ${BINDIR}/gzcat -#LINKS+= ${BINDIR}/gzip ${BINDIR}/uncompress LINKS+= ${BINDIR}/gzip ${BINDIR}/zcat +LINKS+= ${BINDIR}/zdiff ${BINDIR}/zcmp +#LINKS+= ${BINDIR}/gzip ${BINDIR}/uncompress afterinstall: install -c -o ${BINOWN} -g ${BINGRP} -m ${BINMODE} \ |