2024-02-11

This commit is contained in:
ddidier/sphinx-doc 2023-10-14 21:06:27 +00:00 committed by Nicolas Boufidjeline
commit d654ae6731
29 changed files with 5392 additions and 0 deletions

26
Makefile Normal file
View file

@ -0,0 +1,26 @@
# 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