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