doc: update Vala documentation
[automake.git] / contrib / check-html.am
blob954470ba788f9d6138320b808b3d968c30df24ed
1 ## automake - create Makefile.in from Makefile.am
2 ## Copyright (C) 2001-2024 Free Software Foundation, Inc.
3 ##
4 ## This program is free software; you can redistribute it and/or modify
5 ## it under the terms of the GNU General Public License as published by
6 ## the Free Software Foundation; either version 2, or (at your option)
7 ## any later version.
8 ##
9 ## This program is distributed in the hope that it will be useful,
10 ## but WITHOUT ANY WARRANTY; without even the implied warranty of
11 ## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12 ## GNU General Public License for more details.
14 ## You should have received a copy of the GNU General Public License
15 ## along with this program.  If not, see <https://www.gnu.org/licenses/>.
17 ## Makefile.am fragment to produce HTML output from RST-formatted
18 ## log files produced by the parallel-tests output.
19 ## This fragment was part of the automake core in the 1.11.x release
20 ## series, but has been then moved to contrib.
22 TEST_SUITE_HTML = $(TEST_SUITE_LOG:.log=.html)
24 mostlyclean-local: mostlyclean-check-html
25 .PHONY: mostlyclean-check-html
26 mostlyclean-check-html:
27         $(am__rm_f) $(TEST_LOGS:.log=.html)
28         rm -f $(TEST_SUITE_HTML)
30 .log.html:
31         @list='$(RST2HTML) rst2html rst2html.py';                       \
32         while :; do                                                     \
33           for r2h in $$list; do                                         \
34             if ($$r2h --version) >/dev/null 2>&1; then break 2;         \
35             else :; fi;                                                 \
36           done;                                                         \
37           echo "cannot find rst2html, cannot create $@" >&2;            \
38           exit 2;                                                       \
39         done;                                                           \
40         $$r2h $(AM_RST2HTMLFLAGS) $(RST2HTMLFLAGS) $< >$@-t             \
41           && mv -f $@-t $@
43 # Be sure to run check first, and then to convert the result.
44 # Beware of concurrent executions.  Run "check" not "check-TESTS", as
45 # check-SCRIPTS and other dependencies are rebuilt by the former only.
46 # And expect check to fail.
47 check-html recheck-html:
48         @target=`echo $@ | sed 's/-html$$//'`; \
49         rv=0; $(MAKE) $(AM_MAKEFLAGS) $$target || rv=$$?; \
50 ## The nullification of $(TEST_LOGS) is required to ensure that
51 ## "make recheck-html" do not try to uselessly re-run tests.
52         $(MAKE) $(AM_MAKEFLAGS) $(TEST_SUITE_HTML) TEST_LOGS= || exit 4; \
53         exit $$rv
55 .PHONY: check-html recheck-html
56 .MAKE: check-html recheck-html