Makefile revision 1.7
1# $NetBSD: Makefile,v 1.7 2003/12/28 17:26:00 wiz Exp $ 2 3PROG= gzip 4MAN= gzip.1 gzexe.1 zdiff.1 zforce.1 zgrep.1 zmore.1 znew.1 5 6DPADD= ${LIBZ} 7LDADD= -lz 8 9SCRIPTS= gzexe zdiff zforce zgrep zmore znew 10 11MLINKS+= gzip.1 gunzip.1 \ 12 gzip.1 gzcat.1 \ 13 gzip.1 zcat.1 \ 14 zdiff.1 zcmp.1 \ 15 zgrep.1 zegrep.1 \ 16 zgrep.1 zfgrep.1 17 18LINKS+= ${BINDIR}/gzip ${BINDIR}/gunzip \ 19 ${BINDIR}/gzip ${BINDIR}/gzcat \ 20 ${BINDIR}/gzip ${BINDIR}/zcat \ 21 ${BINDIR}/zdiff ${BINDIR}/zcmp \ 22 ${BINDIR}/zgrep ${BINDIR}/zegrep \ 23 ${BINDIR}/zgrep ${BINDIR}/zfgrep 24 25.include <bsd.prog.mk> 26