[BACK]Return to Makefile CVS log [TXT][DIR] Up to [cvsweb.bsd.lv] / mandoc / regress / mdoc / Bl

Annotation of mandoc/regress/mdoc/Bl/Makefile, Revision 1.3

1.1       schwarze    1: # $OpenBSD: Makefile,v 1.31 2016/10/17 19:00:16 schwarze Exp $
                      2:
                      3: REGRESS_TARGETS  = item inset diag ohang bullet dash enum hang tag
                      4: REGRESS_TARGETS += column colNoIt extend nested offset secstart
                      5:
                      6: REGRESS_TARGETS += notype multitype badargs
                      7: REGRESS_TARGETS += empty noIt emptyhead emptytag emptyitem multitag
1.2       schwarze    8: REGRESS_TARGETS += bareIt bareTa unclosed break breakingIt breakingTa broken
1.1       schwarze    9:
                     10: UTF8_TARGETS    = dash
                     11:
                     12: LINT_TARGETS    = column notype badargs tag
                     13: LINT_TARGETS   += empty noIt emptyhead emptytag emptyitem
                     14: LINT_TARGETS   += bareIt bareTa break breakingIt broken
                     15:
1.3     ! schwarze   16: MARKDOWN_TARGETS  = item diag ohang bullet dash enum
        !            17: MARKDOWN_TARGETS += notype multitype
        !            18: MARKDOWN_TARGETS += empty emptyitem
        !            19: MARKDOWN_TARGETS += bareIt bareTa unclosed breakingTa
        !            20:
1.2       schwarze   21: # groff-mandoc differences:
                     22: # - groff allows enclosures to span Ta, mandoc does not
                     23:
                     24: SKIP_GROFF ?= breakingTa
                     25:
1.1       schwarze   26: # groff-1.22.3 defects:
                     27: # - lists with missing or late type ruin indentation
                     28: # - empty lists ruin indentation and sometimes cause empty lines
                     29: # - breaking lists continue indefinitely
                     30: # - breaking items sometimes ruin indentation, sometimes abort processing
                     31: # - breaking a list aborts processing
                     32: # - empty -tag item heads lose the blank line and the indentation
                     33:
1.2       schwarze   34: SKIP_GROFF += notype empty break breakingIt broken emptytag
1.1       schwarze   35:
1.2       schwarze   36: SKIP_TMAN ?= column colNoIt multitype multitag bareTa break breakingTa broken
1.1       schwarze   37:
                     38: # Fixing the indentation in long .IP and .TP tags in -man -Tascii
                     39: # caused a minor regression in -Tman that is not trivial to fix,
                     40: # so disable the related test for now.
                     41:
                     42: SKIP_TMAN += tag
                     43:
                     44: # Empty heads are still mishandled by -Tman.
                     45:
                     46: SKIP_TMAN += emptyhead emptytag
                     47:
                     48: .include <bsd.regress.mk>

CVSweb