blob: a9553dfc98f1e1daed458955e24fab2c3acf1678 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
# From: @(#)Makefile 6.3 (Berkeley) 6/8/93
# $OpenBSD: Makefile,v 1.3 2004/02/01 14:22:44 jmc Exp $
VOLUME= papers
DOC= malloc
SRCS= abs.ms intro.ms kernel.ms malloc.ms problems.ms alternatives.ms
SRCS+= performance.ms implementation.ms conclusion.ms
MACROS= -ms
paper.txt: ${SRCS}
${ROFF} -Tascii ${SRCS} > ${.TARGET}
edit:
vi ${SRCS}
.include <bsd.doc.mk>
|