0971283da1
r272777: Integrate usr.sbin/nmtree/tests from NetBSD into atf/kyua In collaboration with: pho Sponsored by: EMC / Isilon Storage Division r272779: Integrate usr.sbin/basename/tests from NetBSD into atf/kyua In collaboration with: pho Sponsored by: EMC / Isilon Storage Division r272780: Integrate usr.bin/cmp/tests from NetBSD into atf/kyua In collaboration with: sjg Sponsored by: EMC / Isilon Storage Division r272781: Integrate usr.bin/dirname/tests from NetBSD into atf/kyua In collaboration with: pho, sjg Sponsored by: EMC / Isilon Storage Division r272782: Integrate bin/sleep/tests from NetBSD into atf/kyua Sponsored by: EMC / Isilon Storage Division r272783: Integrate usr.bin/cut/tests from NetBSD into atf/kyua Sponsored by: EMC / Isilon Storage Division r272784: Integrate usr.bin/grep/tests from NetBSD into atf/kyua Sponsored by: EMC / Isilon Storage Division r272787: Integrate usr.bin/diff/tests from NetBSD into atf/kyua at gnu/usr.bin/diff/tests Sponsored by: EMC / Isilon Storage Division r272788: Integrate usr.bin/gzip/tests from NetBSD into atf/kyua Sponsored by: EMC / Isilon Storage Division
37 lines
675 B
Makefile
37 lines
675 B
Makefile
# $NetBSD: Makefile,v 1.18 2013/11/13 11:12:24 pettai Exp $
|
|
# $FreeBSD$
|
|
|
|
.include <bsd.own.mk>
|
|
|
|
PROG= gzip
|
|
MAN= gzip.1 gzexe.1 zdiff.1 zforce.1 zmore.1 znew.1
|
|
|
|
DPADD= ${LIBZ} ${LIBLZMA}
|
|
LDADD= -lz -llzma
|
|
|
|
.if ${MK_BZIP2_SUPPORT} != "no"
|
|
DPADD+= ${LIBBZ2}
|
|
LDADD+= -lbz2
|
|
.else
|
|
CFLAGS+= -DNO_BZIP2_SUPPORT
|
|
.endif
|
|
|
|
SCRIPTS= gzexe zdiff zforce zmore znew
|
|
|
|
MLINKS+= gzip.1 gunzip.1 \
|
|
gzip.1 gzcat.1 \
|
|
gzip.1 zcat.1 \
|
|
zdiff.1 zcmp.1 \
|
|
zmore.1 zless.1
|
|
|
|
LINKS+= ${BINDIR}/gzip ${BINDIR}/gunzip \
|
|
${BINDIR}/gzip ${BINDIR}/gzcat \
|
|
${BINDIR}/gzip ${BINDIR}/zcat \
|
|
${BINDIR}/zdiff ${BINDIR}/zcmp
|
|
|
|
.if ${MK_TESTS} != "no"
|
|
SUBDIR+= tests
|
|
.endif
|
|
|
|
.include <bsd.prog.mk>
|