Makefile revision 1.3
1# $NetBSD: Makefile,v 1.3 2000/11/08 02:15:13 wiz Exp $ 2 3LIB= bz2 4MKMAN= no 5 6SRCS=blocksort.c huffman.c crctable.c randtable.c compress.c decompress.c bzlib.c 7INCS= bzlib.h 8INCSDIR=/usr/include 9 10TEXINFO= bzip2.info 11CLEANFILES+= bzip2.texi 12 13bzip2.texi: manual.texi 14 @-rm -f $@ 15 sed -e 's/@parindent.*//' \ 16 -e 's/@parskip.*//' \ 17 -e 's/@node Overview, Implementation, Top, Top/@node Top, (dir), (dir), (dir)/' \ 18 <$> >$@ 19 20.include <bsd.info.mk> 21.include <bsd.lib.mk> 22