NetBSD/usr.bin/gzip/Makefile

30 lines
703 B
Makefile
Raw Normal View History

# $NetBSD: Makefile,v 1.18 2013/11/13 11:12:24 pettai Exp $
2007-05-28 16:06:17 +04:00
USE_FORT?= yes # data-driven bugs?
PROG= gzip
MAN= gzip.1 gzexe.1 zdiff.1 zforce.1 zgrep.1 zmore.1 znew.1
DPADD= ${LIBZ} ${LIBBZ2} ${LIBLZMA}
LDADD= -lz -lbz2 -llzma
SCRIPTS= gzexe zdiff zforce zgrep zmore znew
2003-12-23 09:23:32 +03:00
MLINKS+= gzip.1 gunzip.1 \
gzip.1 gzcat.1 \
2003-12-28 16:37:23 +03:00
gzip.1 zcat.1 \
zdiff.1 zcmp.1 \
zgrep.1 zegrep.1 \
zgrep.1 zfgrep.1 \
zmore.1 zless.1
2003-12-23 10:56:01 +03:00
2003-12-23 09:23:32 +03:00
LINKS+= ${BINDIR}/gzip ${BINDIR}/gunzip \
${BINDIR}/gzip ${BINDIR}/gzcat \
2003-12-28 16:40:56 +03:00
${BINDIR}/gzip ${BINDIR}/zcat \
${BINDIR}/zdiff ${BINDIR}/zcmp \
${BINDIR}/zgrep ${BINDIR}/zegrep \
${BINDIR}/zgrep ${BINDIR}/zfgrep \
${BINDIR}/zmore ${BINDIR}/zless
2003-12-23 09:23:32 +03:00
.include <bsd.prog.mk>