diff options
Diffstat (limited to 'share/doc/papers/sysperf/Makefile')
-rw-r--r-- | share/doc/papers/sysperf/Makefile | 25 |
1 files changed, 13 insertions, 12 deletions
diff --git a/share/doc/papers/sysperf/Makefile b/share/doc/papers/sysperf/Makefile index b65852bf..ae567bc 100644 --- a/share/doc/papers/sysperf/Makefile +++ b/share/doc/papers/sysperf/Makefile @@ -1,22 +1,23 @@ -# @(#)Makefile 1.6 (Berkeley) 6/8/93 +# From: @(#)Makefile 1.6 (Berkeley) 6/8/93 +# $Id$ -DIR= papers/sysperf +VOLUME= papers +DOC= sysperf MACROS= -ms -SRCS= 0.t 1.t 2.t 3.t 4.t 5.t 6.t 7.t +LSRCS= 0.t 1.t 2.t 3.t 4.t 5.t 6.t 7.t EXTRA= a1.t a2.t -OBJS= paper.tmp appendix.tmp -CLEANFILES+=${OBJS} +SRCS= paper.tmp appendix.tmp +CLEANFILES+=${SRCS} +SRCDIR= ${.OBJDIR} +USE_EQN= yes -paper.ps: ${OBJS} - ${ROFF} ${OBJS} > ${.TARGET} - -paper.tmp: ${SRCS} - ${TBL} ${SRCS} | ${EQN} > paper.tmp +paper.tmp: ${LSRCS} + (cd ${.CURDIR}; ${TBL} ${LSRCS}) > paper.tmp appendix.tmp: a1.t a2.t - ${GRIND} -f a1.t | awk '/\.\(\)/{ cnt = 2 } \ + ${GRIND} -f ${.CURDIR}/a1.t | awk '/\.\(\)/{ cnt = 2 } \ { if (cnt) cnt -= 1; else print $$0; } ' > appendix.tmp - ${GRIND} -f -lcsh a2.t | awk '/\.\(\)/{ cnt = 2 } \ + ${GRIND} -f -lcsh ${.CURDIR}/a2.t | awk '/\.\(\)/{ cnt = 2 } \ { if (cnt) cnt -= 1; else print $$0; } ' >> appendix.tmp .include <bsd.doc.mk> |