blob: 8ec7606f864e070c36e309758df62b80723daa6d (
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
|
# $OpenBSD: Makefile,v 1.13 2017/02/06 03:44:37 schwarze Exp $
REGRESS_TARGETS = badNAME badNAMEuse break broken
REGRESS_TARGETS += empty emptyNAME emptyNAMEuse
REGRESS_TARGETS += font long par parns punct
LINT_TARGETS = badNAME badNAMEuse break broken punct
# groff-1.22.3/mandoc differences:
# - When the head of an Nm block in the SYNOPSIS is broken by an
# explicit block end macro on the same line, formatting differs,
# but doesn't make sense either way.
# - Groff doesn't support the nS register.
SKIP_GROFF = broken parns
SKIP_TMAN = broken par parns
# groff-1.22.3 defect:
# When a SYNOPSIS Nm block head breaks a sub block, all the
# remaining content in the document gets lost.
SKIP_GROFF += break
SKIP_MARKDOWN ?= badNAME badNAMEuse emptyNAME emptyNAMEuse
.include <bsd.regress.mk>
|