diff options
author | wollman <wollman@FreeBSD.org> | 1995-01-11 04:10:10 +0000 |
---|---|---|
committer | wollman <wollman@FreeBSD.org> | 1995-01-11 04:10:10 +0000 |
commit | b82a0af6bf60ad3ab1990d737578d0562ae85e7f (patch) | |
tree | ea3d34a3f6c3c1ec7db40f741be34c8cbc40a1ce /share/doc/papers/kernmalloc | |
parent | 7362889467ae97bb403da586aacefd40ff902bb9 (diff) | |
download | FreeBSD-src-b82a0af6bf60ad3ab1990d737578d0562ae85e7f.zip FreeBSD-src-b82a0af6bf60ad3ab1990d737578d0562ae85e7f.tar.gz |
Make all these format under the new scheme. I haven't had a chance to
test the -me stuff, so it's still disabled for now.
Diffstat (limited to 'share/doc/papers/kernmalloc')
-rw-r--r-- | share/doc/papers/kernmalloc/Makefile | 21 |
1 files changed, 15 insertions, 6 deletions
diff --git a/share/doc/papers/kernmalloc/Makefile b/share/doc/papers/kernmalloc/Makefile index 8966f36..7c97c82 100644 --- a/share/doc/papers/kernmalloc/Makefile +++ b/share/doc/papers/kernmalloc/Makefile @@ -1,11 +1,20 @@ -# @(#)Makefile 1.8 (Berkeley) 6/8/93 +# From: @(#)Makefile 1.8 (Berkeley) 6/8/93 +# $Id$ -DIR= papers/kernmalloc -SRCS= kernmalloc.t appendix.t +VOLUME= papers +DOC= kernmalloc +SRCS= kernmalloc.ms appendix.ms +SRCDIR= ${.OBJDIR} # ack! MACROS= -ms +USE_TBL= yes +USE_PIC= yes +USE_EQN= yes +CLEANFILES+= kernmalloc.ms appendix.ms -paper.ps: ${SRCS} alloc.fig usage.tbl - ${SOELIM} ${SRCS} | ${TBL} | ${PIC} | ${EQN} | ${GRIND} | \ - ${ROFF} > ${.TARGET} +kernmalloc.ms: kernmalloc.t alloc.fig usage.tbl + (cd ${.CURDIR}; ${SOELIM} kernmalloc.t) > ${.TARGET} + +appendix.ms: appendix.t + vgrind -f < ${.CURDIR}/appendix.t > ${.TARGET} .include <bsd.doc.mk> |