Makefile revision 1.16
11.7Smycroft# from: @(#)Makefile 6.13 (Berkeley) 3/20/91 21.16Smycroft# $NetBSD: Makefile,v 1.16 1997/03/27 03:12:32 mycroft Exp $ 31.1Scgd 41.1ScgdBINDIR= /usr/share 51.16SmycroftMSRCS= andoc doc doc-ditroff doc-common doc-nroff doc-syms 61.15SchristosMMACS= ${MSRCS:S@^@tmac.@g} 71.16SmycroftFILES= ${MMACS} 81.15SchristosFILESDIR=${BINDIR}/tmac 91.1ScgdLINKS= ${BINDIR}/tmac/tmac.andoc ${BINDIR}/tmac/tmac.an 101.15SchristosCLEANFILES+= ${MMACS} 111.1Scgd 121.15SchristosSTRIP_SED = ${.CURDIR}/../me/strip.sed 131.2Scgd 141.1Scgd# old macros not currently installed... 151.6SjtcOFILES= tmac.an.v6compat tmac.an6n tmac.an6t tmac.a tmac.cp tmac.doc.old 161.1Scgd 171.15Schristosall: ${MMACS} 181.9Sjtc 191.15Schristosdepend lint tags: 201.15Schristos 211.15Schristos.for i in ${MSRCS} 221.15Schristostmac.$i: $i 231.15Schristos sed -f ${STRIP_SED} < ${.ALLSRC} > ${.TARGET} 241.15Schristos.endfor 251.1Scgd 261.1Scgd.include <bsd.prog.mk> 27