Makefile revision 1.10
11.10Smrg# $NetBSD: Makefile,v 1.10 2006/05/21 03:34:57 mrg Exp $ 21.9Slukem 31.9SlukemNOMAN= # defined 41.8Sthorpej 51.8Sthorpej.include <bsd.own.mk> 61.1Sross 71.6StvLIB= bz2 81.9SlukemDIST= ${NETBSDSRCDIR}/dist/bzip2 91.6Stv.PATH: ${DIST} 101.1Sross 111.6StvSRCS= blocksort.c huffman.c crctable.c randtable.c compress.c \ 121.6Stv decompress.c bzlib.c 131.6StvINCS= bzlib.h 141.6StvINCSDIR= /usr/include 151.1Sross 161.5SsimonbTEXINFO= bzip2.info 171.3SwizCLEANFILES+= bzip2.texi 181.3Swiz 191.8Sthorpej# XXX huffman.c gets mis-compiled with 2.95.3 201.8Sthorpej.if ${MACHINE_ARCH} == "vax" 211.8SthorpejCOPTS+= -O0 221.8Sthorpej.endif 231.8Sthorpej 241.10Smrg# XXX blocksort.c gets mis-compiled with 4.1 251.10Smrg.if (${MACHINE_ARCH} == "sh3el" || ${MACHINE_ARCH} == "sh3eb") && \ 261.10Smrg ${HAVE_GCC} == 4 271.10SmrgCOPTS.blocksort.c+= -O0 281.10Smrg.endif 291.10Smrg 301.6Stvbzip2.texi: manual.texi 311.6Stv @-rm -f $@ 321.6Stv sed -e 's/@parindent.*//' \ 331.6Stv -e 's/@parskip.*//' \ 341.6Stv -e 's/@node Overview, Implementation, Top, Top/@node Overview, (dir), Top, (dir)/' \ 351.6Stv -e 's/@itemize$$/@itemize @bullet/' \ 361.7Smjl -e 's/@bf{\(.*\)}/\1/' \ 371.6Stv <$> >$@ 381.4Swiz 391.4Swiz.if ${MKSHARE} != "no" 401.4SwizFILESDIR= ${HTMLDOCDIR}/bzip2 411.4SwizFILES= manual_toc.html manual_1.html manual_2.html manual_3.html \ 421.4Swiz manual_4.html 431.4Swiz.endif 441.3Swiz 451.3Swiz.include <bsd.info.mk> 461.1Sross.include <bsd.lib.mk> 47