2024-02-11
This commit is contained in:
parent
579ff09f0f
commit
d654ae6731
29 changed files with 5392 additions and 0 deletions
26
Makefile
Normal file
26
Makefile
Normal 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
|
||||
Loading…
Add table
Add a link
Reference in a new issue