Skip to content

Commit

Permalink
Update Makefile
Browse files Browse the repository at this point in the history
  • Loading branch information
matiasilva committed Dec 15, 2024
1 parent 382378b commit 15d447e
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions docs/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -25,11 +25,13 @@ htmllive: html
html: clean $(HTML_BUILDDIR)
$(UV) run $(SPHINXBUILD) -b html -n "$(SOURCEDIR)" "$(HTML_BUILDDIR)" -c .

pdflive: pdf
make -C $(PDF_BUILDDIR)

pdf: clean $(PDF_BUILDDIR)
$(UV) run $(SPHINXBUILD) -b latex -n "$(SOURCEDIR)" "$(PDF_BUILDDIR)" -c .
make -C ${PDF_BUILDDIR}

clean:
rm -rf $(HTML_BUILDDIR) $(PDF_BUILDDIR)

.PHONY: clean test html
.PHONY: clean test html htmllive pdflive pdf

0 comments on commit 15d447e

Please sign in to comment.