5e4c038a45
This has the effect of the postscript output actually being readable.
24 lines
678 B
Makefile
24 lines
678 B
Makefile
# $Id: Makefile,v 1.2 2002/06/02 17:40:46 pooka Exp $
|
|
|
|
DIR= papers/pulldown
|
|
SRCS= 0.t 1.t 2.t 4.t 8.t 9.t
|
|
MACROS= -ms
|
|
DPSRCS= ${SRCS} refs.r Makefile
|
|
|
|
paper.ps: ${DPSRCS}
|
|
${SOELIM} -I${.CURDIR} ${SRCS} | \
|
|
${REFER} -P -S -e -p ${.CURDIR}/refs.r | \
|
|
${PIC} | ${TBL} | ${EQN} | ${ROFF} ${MACROS} > ${.TARGET}
|
|
|
|
paper.dvi: ${DPSRCS}
|
|
${SOELIM} -I${.CURDIR} ${SRCS} | \
|
|
${REFER} -P -S -e -p ${.CURDIR}/refs.r | \
|
|
${PIC} | ${TBL} | ${ROFF} ${MACROS} -Tdvi > ${.TARGET}
|
|
|
|
paper.txt: ${DPSRCS}
|
|
${SOELIM} -I${.CURDIR} ${SRCS} | \
|
|
${REFER} -P -S -e -p ${.CURDIR}/refs.r | \
|
|
${PIC} | ${TBL} | ${EQN} -Tascii | nroff -ms > ${.TARGET}
|
|
|
|
.include <bsd.doc.mk>
|