Makefile revision 1.8
11.8Sthorpej# $NetBSD: Makefile,v 1.8 2002/06/27 21:03:37 thorpej Exp $ 21.8Sthorpej 31.8Sthorpej.include <bsd.own.mk> 41.1Sross 51.6StvLIB= bz2 61.6StvNOMAN= # defined 71.6StvDIST= ${.CURDIR}/../../dist/bzip2 81.6Stv.PATH: ${DIST} 91.1Sross 101.6StvSRCS= blocksort.c huffman.c crctable.c randtable.c compress.c \ 111.6Stv decompress.c bzlib.c 121.6StvINCS= bzlib.h 131.6StvINCSDIR= /usr/include 141.1Sross 151.5SsimonbTEXINFO= bzip2.info 161.3SwizCLEANFILES+= bzip2.texi 171.3Swiz 181.8Sthorpej# XXX huffman.c gets mis-compiled with 2.95.3 191.8Sthorpej.if ${MACHINE_ARCH} == "vax" 201.8SthorpejCOPTS+= -O0 211.8Sthorpej.endif 221.8Sthorpej 231.6Stvbzip2.texi: manual.texi 241.6Stv @-rm -f $@ 251.6Stv sed -e 's/@parindent.*//' \ 261.6Stv -e 's/@parskip.*//' \ 271.6Stv -e 's/@node Overview, Implementation, Top, Top/@node Overview, (dir), Top, (dir)/' \ 281.6Stv -e 's/@itemize$$/@itemize @bullet/' \ 291.7Smjl -e 's/@bf{\(.*\)}/\1/' \ 301.6Stv <$> >$@ 311.4Swiz 321.4Swiz.if ${MKSHARE} != "no" 331.4SwizFILESDIR= ${HTMLDOCDIR}/bzip2 341.4SwizFILES= manual_toc.html manual_1.html manual_2.html manual_3.html \ 351.4Swiz manual_4.html 361.4Swiz.endif 371.3Swiz 381.3Swiz.include <bsd.info.mk> 391.1Sross.include <bsd.lib.mk> 40