diff --git a/dependencies/installers/Debian-10/install.sh b/dependencies/installers/Debian-10/install.sh index 4e1b50e01..3ba695b81 100755 --- a/dependencies/installers/Debian-10/install.sh +++ b/dependencies/installers/Debian-10/install.sh @@ -3,6 +3,7 @@ sudo apt-get install -y \ ant \ default-jdk \ + docutils-common \ make \ patch \ python3-mdx-math \ diff --git a/tests/makefiles/Makelocal-output b/tests/makefiles/Makelocal-output index a6ae35cc3..eff6f787b 100644 --- a/tests/makefiles/Makelocal-output +++ b/tests/makefiles/Makelocal-output @@ -19,3 +19,10 @@ html: ${HTML_FILES} %.html: %.rst ./tests/makefiles/style.css $(shell which rst2html5.py || which rst2html5 || echo "rst2html5.py") -d --syntax-highlight=none --stylesheet=$(word 2, $^) $< $@ + +.PHONY: clean clean-output + +clean: clean-output + +clean-output: + rm -f $(PDF_FILES) $(HTML_FILES)