diff options
Diffstat (limited to 'share/doc/papers/sysperf/Makefile')
-rw-r--r-- | share/doc/papers/sysperf/Makefile | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/share/doc/papers/sysperf/Makefile b/share/doc/papers/sysperf/Makefile new file mode 100644 index 000000000000..b65852bff4f4 --- /dev/null +++ b/share/doc/papers/sysperf/Makefile @@ -0,0 +1,22 @@ +# @(#)Makefile 1.6 (Berkeley) 6/8/93 + +DIR= papers/sysperf +MACROS= -ms +SRCS= 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} + +paper.ps: ${OBJS} + ${ROFF} ${OBJS} > ${.TARGET} + +paper.tmp: ${SRCS} + ${TBL} ${SRCS} | ${EQN} > paper.tmp + +appendix.tmp: a1.t a2.t + ${GRIND} -f a1.t | awk '/\.\(\)/{ cnt = 2 } \ + { if (cnt) cnt -= 1; else print $$0; } ' > appendix.tmp + ${GRIND} -f -lcsh a2.t | awk '/\.\(\)/{ cnt = 2 } \ + { if (cnt) cnt -= 1; else print $$0; } ' >> appendix.tmp + +.include <bsd.doc.mk> |