Makefile revision 88055
1#	@(#)Makefile	8.2 (Berkeley) 3/27/94
2# $FreeBSD: head/share/me/Makefile 88055 2001-12-17 13:59:35Z ru $
3
4MELIB=	${BINDIR}/me
5TMLIB=	${BINDIR}/tmac
6MESRCS=	acm.me chars.me deltext.me eqn.me float.me footnote.me \
7	index.me letterhead.me local.me null.me refer.me sh.me \
8	tbl.me thesis.me
9TMSRCS=	tmac.orig_me
10FILES=	${MESRCS:S/$/.tmp/} ${TMSRCS:S/$/.tmp/} revisions
11CLEANFILES+=	${MESRCS:S/$/.tmp/} ${TMSRCS:S/$/.tmp/}
12
13# XXX use groff version
14# MAN=	me.7
15
16.for file in ${MESRCS} ${TMSRCS}
17${file}.tmp: ${file}
18	sed -f ${.CURDIR}/strip.sed < ${.ALLSRC} > ${.TARGET}
19.endfor
20
21.for file in ${MESRCS:S/$/.tmp/} revisions
22FILESDIR_${file}=	${MELIB}
23FILESNAME_${file}=	${file:R}
24.endfor
25.for file in ${TMSRCS:S/$/.tmp/}
26FILESDIR_${file}=	${TMLIB}
27FILESNAME_${file}=	${file:R}
28.endfor
29
30.include <bsd.prog.mk>
31