blob: 3439c90ff078d5fc62400a9defb128f825aab981 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
# $NetBSD: Makefile,v 1.6 2003/10/22 06:04:03 lukem Exp $
.include <bsd.own.mk>
DIST= ${NETBSDSRCDIR}/gnu/dist
.PATH: ${DIST}/sendmail/doc/intro
DIR= smm/09.sendmail
SRCS= intro.me
MACROS= -me
RM= rm -f
all: intro.ps
intro.ps: ${SRCS}
${_MKTARGET_FORMAT}
${RM} ${.TARGET}
${TOOL_PIC} ${.ALLSRC} | ${TOOL_ROFF_PS} ${MACROS} > ${.TARGET}
.include <bsd.doc.mk>
|