diff options
Diffstat (limited to 'share/doc/papers/kernmalloc/Makefile')
-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> |