Makefile revision 69297
1#	From: @(#)Makefile	1.6 (Berkeley) 6/8/93
2# $FreeBSD: head/share/doc/papers/sysperf/Makefile 69297 2000-11-28 11:18:02Z ru $
3
4VOLUME=	papers
5DOC=	sysperf
6MACROS= -ms
7LSRCS=	0.t 1.t 2.t 3.t 4.t 5.t 6.t 7.t
8EXTRA=	a1.t a2.t
9SRCS=	paper.tmp appendix.tmp
10CLEANFILES+=${SRCS}
11SRCDIR=	${.OBJDIR}
12USE_EQN=	yes
13
14paper.tmp: ${LSRCS}
15	(cd ${.CURDIR}; ${TBL} ${LSRCS}) > paper.tmp
16
17appendix.tmp: a1.t a2.t
18	${GRIND} ${.CURDIR}/a1.t |  awk '/\.\(\)/{ cnt = 2 } \
19	   { if (cnt) cnt -= 1; else print $$0; } ' > appendix.tmp
20	${GRIND} -lcsh ${.CURDIR}/a2.t |  awk '/\.\(\)/{ cnt = 2 } \
21	   { if (cnt) cnt -= 1; else print $$0; } ' >> appendix.tmp
22
23.include <bsd.doc.mk>
24