Makefile revision 1.16
1#	from: @(#)Makefile	6.13 (Berkeley) 3/20/91
2#	$NetBSD: Makefile,v 1.16 1997/03/27 03:12:32 mycroft Exp $
3
4BINDIR= /usr/share
5MSRCS=  andoc doc doc-ditroff doc-common doc-nroff doc-syms
6MMACS=  ${MSRCS:S@^@tmac.@g}
7FILES=	${MMACS}
8FILESDIR=${BINDIR}/tmac
9LINKS=	${BINDIR}/tmac/tmac.andoc ${BINDIR}/tmac/tmac.an
10CLEANFILES+= ${MMACS}
11
12STRIP_SED = ${.CURDIR}/../me/strip.sed
13
14# old macros not currently installed...
15OFILES=	tmac.an.v6compat tmac.an6n tmac.an6t tmac.a tmac.cp tmac.doc.old
16
17all:	${MMACS}
18
19depend lint tags:
20
21.for i in ${MSRCS}
22tmac.$i: $i
23	sed -f ${STRIP_SED} < ${.ALLSRC} > ${.TARGET}
24.endfor
25
26.include <bsd.prog.mk>
27