Home | History | Annotate | Line # | Download | only in pulldown
Makefile revision 1.1
      1  1.1  itojun #	$Id: Makefile,v 1.1 2001/07/04 05:29:25 itojun Exp $
      2  1.1  itojun 
      3  1.1  itojun DIR=	papers/pulldown
      4  1.1  itojun SRCS=	0.t 1.t 2.t 4.t 8.t 9.t
      5  1.1  itojun MACROS=	-ms
      6  1.1  itojun DPSRCS=	${SRCS} refs.r Makefile
      7  1.1  itojun 
      8  1.1  itojun paper.ps: ${DPSRCS}
      9  1.1  itojun 	${SOELIM} -I${.CURDIR} ${SRCS} | \
     10  1.1  itojun 	    ${REFER} -P -S -e -p ${.CURDIR}/refs.r | \
     11  1.1  itojun 	    ${PIC} | ${TBL} | ${EQN} |  ${ROFF} > ${.TARGET}
     12  1.1  itojun 
     13  1.1  itojun paper.dvi: ${DPSRCS}
     14  1.1  itojun 	${SOELIM} -I${.CURDIR} ${SRCS} | \
     15  1.1  itojun 	    ${REFER} -P -S -e -p ${.CURDIR}/refs.r | \
     16  1.1  itojun 	    ${PIC} | ${TBL} | ${ROFF} -Tdvi > ${.TARGET}
     17  1.1  itojun 
     18  1.1  itojun paper.txt: ${DPSRCS}
     19  1.1  itojun 	${SOELIM} -I${.CURDIR} ${SRCS} | \
     20  1.1  itojun 	    ${REFER} -P -S -e -p ${.CURDIR}/refs.r | \
     21  1.1  itojun 	    ${PIC} | ${TBL} | ${EQN} -Tascii |  nroff -ms > ${.TARGET}
     22  1.1  itojun 
     23  1.1  itojun .include <bsd.doc.mk>
     24