- Replace lnc(4) driver with NetBSD's le(4), which gives us better performance,
[dragonfly.git] / share / me / Makefile
1 #       @(#)Makefile    8.2 (Berkeley) 3/27/94
2 # $FreeBSD: src/share/me/Makefile,v 1.5.6.3 2002/08/08 08:47:58 ru Exp $
3 # $DragonFly: src/share/me/Makefile,v 1.2 2003/06/17 04:37:01 dillon Exp $
4
5 MELIB=  ${BINDIR}/me
6 TMLIB=  ${BINDIR}/tmac
7 MESRCS= acm.me chars.me deltext.me eqn.me float.me footnote.me \
8         index.me letterhead.me local.me null.me refer.me sh.me \
9         tbl.me thesis.me
10 TMSRCS= tmac.orig_me
11 FILES=  ${MESRCS:S/$/.tmp/} ${TMSRCS:S/$/.tmp/} revisions
12 CLEANFILES+=    ${MESRCS:S/$/.tmp/} ${TMSRCS:S/$/.tmp/}
13
14 MAN=    orig_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
22 FILESDIR_${file}=       ${MELIB}
23 FILESNAME_${file}=      ${file:R}
24 .endfor
25 .for file in ${TMSRCS:S/$/.tmp/}
26 FILESDIR_${file}=       ${TMLIB}
27 FILESNAME_${file}=      ${file:R}
28 .endfor
29
30 .include <bsd.prog.mk>