blob: d001037f51633168fbed5d28779151bfef9d200a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
# $OpenBSD: Makefile,v 1.4 2004/02/01 14:22:45 jmc Exp $
DIR= smm/01.setup
SRCS= 0.t 1.t 2.t 3.t 4.t 5.t 6.t
FILES= ${SRCS}
MACROS= -ms
paper.ps: ${SRCS}
${TBL} ${SRCS} | ${ROFF} > ${.TARGET}
paper.txt: ${SRCS}
${TBL} ${SRCS} | ${ROFF} -Tascii > ${.TARGET}
install: ${SRCS}
install -c -o ${DOCOWN} -g ${DOCGRP} -m ${DOCMODE} \
Makefile ${FILES} ${EXTRA} ${DESTDIR}${DOCDIR}/${DIR}
.include <bsd.doc.mk>
|