blob: 0d024a23c73ff295a38d1c8e7b6298dfba69bdbc (
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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
|
# $OpenBSD: Makefile,v 1.9 2015/02/03 19:37:25 schwarze Exp $
REGRESS_TARGETS = append cond escname factorial indir infinite startde TH Dd
LINT_TARGETS = escname indir infinite
# groff-1.22.3 defect:
# infinite recursion aborts output completely
SKIP_GROFF = infinite
.include <bsd.regress.mk>
# OpenBSD only: non-standard targets
# --- additions to public targets ---
all ascii: ascii-diff-opt
ascii-clean: ascii-clean-opt
groff: TH.out_ascii_opt Dd.out_ascii_opt
groff-clean: groff-clean-opt
# --- local rules ---
ascii-diff-opt: TH.mandoc_ascii_opt Dd.mandoc_ascii_opt
@${DIFF} ${.CURDIR}/TH.out_ascii_opt TH.mandoc_ascii_opt
@${DIFF} ${.CURDIR}/Dd.out_ascii_opt Dd.mandoc_ascii_opt
TH.mandoc_ascii_opt: TH.in
@${MANDOC} -Ios=OpenBSD -Tascii -man ${.ALLSRC} > ${.TARGET}
Dd.mandoc_ascii_opt: Dd.in
@${MANDOC} -Ios=OpenBSD -Tascii -mdoc ${.ALLSRC} > ${.TARGET}
ascii-clean-opt:
@rm -f TH.mandoc_ascii_opt Dd.mandoc_ascii_opt
TH.out_ascii_opt: TH.in
/usr/local/bin/nroff -c -man -Tascii ${.ALLSRC} > ${.TARGET}
Dd.out_ascii_opt: Dd.in
/usr/local/bin/nroff -c -mdoc -Tascii ${.ALLSRC} > ${.TARGET}
groff-clean-opt:
rm -f TH.out_ascii_opt Dd.out_ascii_opt
|