blob: 6116fa405b0d43c7c71c308da1d751ea9feeaec2 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
# @(#)Makefile 8.1 (Berkeley) 6/8/93
# $FreeBSD$
DIR= psd/06.Clang
SRCS= Clang.ms
MACROS= -ms
GROFF= groff
all: paper.ps paper.ascii
paper.ps: ${SRCS}
${TBL} ${SRCS} | ${GROFF} ${MACROS} - > ${.TARGET}
paper.ascii: ${SRCS}
${TBL} ${SRCS} | ${ROFF} ${MACROS} - > ${.TARGET}
paper.ascii.gz: paper.ascii
paper.ps.gz: paper.ps
paper.ascii.gz paper.ps.gz:
gzip -f ${.TARGET:.gz=}
clean:
rm -f paper.* *.spell errs Errs make.out Make.log *~
.include <bsd.doc.mk>
|