Makefile revision 1.29
11.19Sphil# @(#)Makefile 8.1 (Berkeley) 6/8/93 21.29Slukem# $NetBSD: Makefile,v 1.29 2003/10/21 10:01:20 lukem Exp $ 31.1Scgd 41.20Sthorpej# IF YOU ADD TO MSRCS, MAKE SURE YOU UPDATE `CATDEPS' IN bsd.man.mk! 51.27Swiz#MSRCS= andoc doc doc-ditroff doc-common doc-nroff doc-syms doc2html 61.27SwizMSRCS= doc2html 71.27SwizMMACS= ${MSRCS:S@$@.tmac@g} 81.26SmycroftINCS= ${MMACS} 91.26SmycroftINCSDIR=${BINDIR}/tmac 101.15SchristosCLEANFILES+= ${MMACS} 111.1Scgd 121.23SchristosTMACDIR?=${.CURDIR} 131.23SchristosSTRIP_SED = ${TMACDIR}/../me/strip.sed 141.2Scgd 151.1Scgd# old macros not currently installed... 161.6SjtcOFILES= tmac.an.v6compat tmac.an6n tmac.an6t tmac.a tmac.cp tmac.doc.old 171.1Scgd 181.25Smycroftrealall: ${MMACS} 191.15Schristos 201.15Schristos.for i in ${MSRCS} 211.27Swiz$i.tmac: $i 221.29Slukem ${_MKTARGET_CREATE} 231.24Schristos sed -f ${STRIP_SED} < ${.ALLSRC} > ${.TARGET} 241.15Schristos.endfor 251.1Scgd 261.1Scgd.include <bsd.prog.mk> 27