blob: 0c982f93ca1a7b2058a9c261fb9177a4319a3a4c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
# $OpenBSD: Makefile,v 1.3 2004/02/01 14:22:45 jmc Exp $
DIR= smm/09.sendmail
SRCS= intro.me
MACROS= -me
all: intro.ps
intro.ps: ${SRCS}
rm -f ${.TARGET}
${PIC} ${SRCS} | ${ROFF} > ${.TARGET}
paper.txt: ${SRCS}
rm -f ${.TARGET}
${PIC} ${SRCS} | ${ROFF} -Tascii > ${.TARGET}
.include <bsd.doc.mk>
|