xref: /netbsd-src/share/doc/papers/pulldown/Makefile (revision f648d12d47727113ad5330b0753bb2f2ef8e1045)
1#	$NetBSD: Makefile,v 1.4 2004/06/30 03:26:27 jmc Exp $
2
3DIR=	papers/pulldown
4SRCS=	0.t 1.t 2.t 4.t 8.t 9.t
5MACROS=	-ms
6DPSRCS=	${SRCS} refs.r Makefile
7
8paper.ps: ${DPSRCS}
9	${TOOL_SOELIM} -I${.CURDIR} ${SRCS} | \
10	    ${TOOL_REFER} -P -S -e -p ${.CURDIR}/refs.r | \
11	    ${TOOL_PIC} | ${TOOL_TBL} | ${TOOL_EQN} | \
12	    ${TOOL_ROFF_PS} ${MACROS} > ${.TARGET}
13
14paper.dvi: ${DPSRCS}
15	${TOOL_SOELIM} -I${.CURDIR} ${SRCS} | \
16	    ${TOOL_REFER} -P -S -e -p ${.CURDIR}/refs.r | \
17	    ${TOOL_PIC} | ${TOOL_TBL} | \
18	    ${TOOL_ROFF_DVI} ${MACROS} > ${.TARGET}
19
20paper.txt: ${DPSRCS}
21	${TOOL_SOELIM} -I${.CURDIR} ${SRCS} | \
22	    ${TOOL_REFER} -P -S -e -p ${.CURDIR}/refs.r | \
23	    ${TOOL_PIC} | ${TOOL_TBL} | ${TOOL_EQN} -Tascii | \
24	    ${TOOL_ROFF_ASCII} ${MACROS} > ${.TARGET}
25
26.include <bsd.doc.mk>
27