Annotation of mandoc/regress/eqn/Makefile.inc, Revision 1.2
1.1 schwarze 1: # $OpenBSD: Makefile.inc,v 1.2 2015/02/03 19:37:25 schwarze Exp $
2:
3: EQN = /usr/local/bin/eqn
4:
5: SKIP_GROFF ?= ${REGRESS_TARGETS}
6: SKIP_TMAN ?= ALL
1.2 ! schwarze 7: SKIP_MARKDOWN ?= ALL
1.1 schwarze 8:
9:
10: # OpenBSD only: maintainer targets and custom extraction
11:
12: _FULLHTMLFILES = ${HTML_TARGETS:S/$/.html/}
13:
14: html-clean:
15: .if !empty(_FULLHTMLFILES)
16: @rm -f ${_HTMLFILES} ${_FULLHTMLFILES}
17: .endif
18:
19: .for t in ${HTML_TARGETS}
20: ${t}.out_html: ${t}.in
21: ${MANDOC} ${MOPTS} -Thtml ${.ALLSRC} | \
22: ${.CURDIR}/../extract.pl > ${.TARGET}
23: .endfor
24:
25: .include "../Makefile.inc"
26:
27: .in.mandoc_html:
28: @${MANDOC} ${MOPTS} -Thtml ${.IMPSRC} > ${.TARGET:S/mandoc_html$/html/}
29: @${.CURDIR}/../extract.pl < ${.TARGET:S/mandoc_html$/html/} > ${.TARGET}
CVSweb