1 # $NetBSD: Makefile,v 1.4 2000/11/10 02:00:10 wiz Exp $ 2 3 LIB= bz2 4 MKMAN= no 5 6 SRCS=blocksort.c huffman.c crctable.c randtable.c compress.c decompress.c bzlib.c 7 INCS= bzlib.h 8 INCSDIR=/usr/include 9 10 TEXINFO= bzip2.info 11 CLEANFILES+= bzip2.texi 12 13 bzip2.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.own.mk> 21 22 .if ${MKSHARE} != "no" 23 FILESDIR= ${HTMLDOCDIR}/bzip2 24 FILES= manual_toc.html manual_1.html manual_2.html manual_3.html \ 25 manual_4.html 26 .endif 27 28 .include <bsd.info.mk> 29 .include <bsd.lib.mk> 30