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

Annotation of mandoc/regress/eqn/Makefile.inc, Revision 1.4

1.4     ! schwarze    1: # $OpenBSD: Makefile.inc,v 1.5 2020/07/30 21:32:19 schwarze Exp $
1.1       schwarze    2:
                      3: SKIP_GROFF ?= ${REGRESS_TARGETS}
                      4: SKIP_TMAN ?= ALL
1.2       schwarze    5: SKIP_MARKDOWN ?= ALL
1.1       schwarze    6:
                      7:
                      8: # OpenBSD only: maintainer targets and custom extraction
                      9:
                     10: _FULLHTMLFILES = ${HTML_TARGETS:S/$/.html/}
                     11:
                     12: html-clean:
                     13: .if !empty(_FULLHTMLFILES)
1.4     ! schwarze   14:        rm -f ${_HTMLFILES} ${_FULLHTMLFILES}
1.1       schwarze   15: .endif
                     16:
                     17: .for t in ${HTML_TARGETS}
                     18: ${t}.out_html: ${t}.in
                     19:        ${MANDOC} ${MOPTS} -Thtml ${.ALLSRC} | \
                     20:                ${.CURDIR}/../extract.pl > ${.TARGET}
                     21: .endfor
                     22:
                     23: .include "../Makefile.inc"
                     24:
                     25: .in.mandoc_html:
1.4     ! schwarze   26:        ${MANDOC} ${MOPTS} -Thtml ${.IMPSRC} > ${.TARGET:S/mandoc_html$/html/}
        !            27:        ${.CURDIR}/../extract.pl < ${.TARGET:S/mandoc_html$/html/} > ${.TARGET}

CVSweb