1994-05-30 19:09:18 +00:00
|
|
|
# @(#)Makefile 8.2 (Berkeley) 3/27/94
|
2001-03-27 13:48:25 +00:00
|
|
|
# $FreeBSD$
|
1994-05-30 19:09:18 +00:00
|
|
|
|
|
|
|
MELIB= ${BINDIR}/me
|
|
|
|
TMLIB= ${BINDIR}/tmac
|
|
|
|
MESRCS= acm.me chars.me deltext.me eqn.me float.me footnote.me \
|
|
|
|
index.me letterhead.me local.me null.me refer.me sh.me \
|
|
|
|
tbl.me thesis.me
|
|
|
|
TMSRCS= tmac.orig_me
|
2001-12-17 13:59:35 +00:00
|
|
|
FILES= ${MESRCS:S/$/.tmp/} ${TMSRCS:S/$/.tmp/} revisions
|
|
|
|
CLEANFILES+= ${MESRCS:S/$/.tmp/} ${TMSRCS:S/$/.tmp/}
|
1995-08-05 07:25:43 +00:00
|
|
|
|
2002-03-20 16:26:35 +00:00
|
|
|
MAN= orig_me.7
|
1994-05-30 19:09:18 +00:00
|
|
|
|
2001-12-17 13:59:35 +00:00
|
|
|
.for file in ${MESRCS} ${TMSRCS}
|
1997-03-08 21:41:41 +00:00
|
|
|
${file}.tmp: ${file}
|
|
|
|
sed -f ${.CURDIR}/strip.sed < ${.ALLSRC} > ${.TARGET}
|
|
|
|
.endfor
|
|
|
|
|
2001-12-17 13:59:35 +00:00
|
|
|
.for file in ${MESRCS:S/$/.tmp/} revisions
|
|
|
|
FILESDIR_${file}= ${MELIB}
|
|
|
|
FILESNAME_${file}= ${file:R}
|
1997-03-08 21:41:41 +00:00
|
|
|
.endfor
|
2001-12-17 13:59:35 +00:00
|
|
|
.for file in ${TMSRCS:S/$/.tmp/}
|
|
|
|
FILESDIR_${file}= ${TMLIB}
|
|
|
|
FILESNAME_${file}= ${file:R}
|
1997-03-08 21:41:41 +00:00
|
|
|
.endfor
|
1994-05-30 19:09:18 +00:00
|
|
|
|
|
|
|
.include <bsd.prog.mk>
|