blob: 02342262c4849f2fa765749409f6fca47fc0ed71 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
# $OpenBSD: Makefile,v 1.9 2014/08/17 18:42:07 schwarze Exp $
REGRESS_TARGETS = badNAME badNAMEuse break empty emptyNAME emptyNAMEuse
REGRESS_TARGETS += font long
LINT_TARGETS = badNAME badNAMEuse break
# groff-1.22.2/mandoc difference:
# When the first Nm does not have an argument but a later one has,
# mandoc retroactively uses the later name for the earlier instances
# of Nm, too, while groff does not.
SKIP_GROFF = badNAMEuse emptyNAMEuse
# groff-1.22.2 defect:
# When a SYNOPSIS Nm block head breaks a sub block, all the
# remaining content in the document gets lost.
SKIP_GROFF += break
.include <bsd.regress.mk>
|