Makefile revision 1.4
1# $NetBSD: Makefile,v 1.4 2000/11/10 02:00:10 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.own.mk> 21 22.if ${MKSHARE} != "no" 23FILESDIR= ${HTMLDOCDIR}/bzip2 24FILES= 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