Skip to content

Commit

Permalink
Merge pull request #509 from vaitkus/cleanup-html-generation
Browse files Browse the repository at this point in the history
Cleanup html generation
  • Loading branch information
vaitkus authored Mar 23, 2024
2 parents 4c77f97 + 0c910f2 commit 1543017
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 0 deletions.
1 change: 1 addition & 0 deletions dependencies/installers/Debian-10/install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
sudo apt-get install -y \
ant \
default-jdk \
docutils-common \
make \
patch \
python3-mdx-math \
Expand Down
7 changes: 7 additions & 0 deletions tests/makefiles/Makelocal-output
Original file line number Diff line number Diff line change
Expand Up @@ -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)

0 comments on commit 1543017

Please sign in to comment.