Make "make html" not trigger test reruns

"make index.html" can still be used to force up-to-date test results,
causing test reruns if necessary.
This commit is contained in:
Behdad Esfahbod 2006-08-08 02:46:38 -04:00
parent caba7f6bda
commit 56791ab31d

View file

@ -509,14 +509,15 @@ retest:
$(MAKE) TESTS="$$TESTS" check; \
$(MAKE) TESTS="$$TESTS" html
# Make index.html
html: index.html
# Make index.html with no dependency tracking.
html:
@echo Creating index.html
@perl $(srcdir)/make-html.pl $(TESTS:=.log) > index.html
# Make index.html containing only the failed tests.
# Make index.html with no dependency tracking, containing only the failed tests.
rehtml:
@$(MAKE) TESTS="$(FAILED_TESTS)" html
$(TESTS): $(SUPPORT_PROGS)
%.log: %
@ -529,6 +530,6 @@ $(NOLOG_TESTS_LOG):
index.html: $(srcdir)/make-html.pl $(TESTS:=.log)
@echo Creating index.html
@perl $^ > index.html
@perl $^ > $@
.PHONY: check-valgrind test recheck retest html rehtml