doc-public/Makefile
ddidier/sphinx-doc d654ae6731 2024-02-11
2024-02-11 22:27:52 +00:00

26 lines
355 B
Makefile

# A Makefile to help building Sphinx documentation.
# The original Sphinx Makefile is "Makefile-sphinx".
SHELL:=/usr/bin/env bash
.DEFAULT_GOAL := html
.PHONY: html
html:
./bin/build-html.sh
.PHONY: pdf
pdf:
./bin/build-pdf.sh
.PHONY: serve
serve:
./bin/serve.sh
.PHONY: package
package: html
./bin/package.sh
.PHONY: tidy
tidy:
./bin/tidy.sh