diff options
Diffstat (limited to 'api-docs/cppdocs/Makefile')
| -rw-r--r-- | api-docs/cppdocs/Makefile | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/api-docs/cppdocs/Makefile b/api-docs/cppdocs/Makefile new file mode 100644 index 00000000..d354d169 --- /dev/null +++ b/api-docs/cppdocs/Makefile @@ -0,0 +1,23 @@ +# Makefile for C++ documentation + +PYTHON ?= poetry run python + +.PHONY: help +help: + @echo "Please use \`make <target>\` where <target> is one of" + @echo " html to make standalone HTML files" + @echo " docset to make a Dash docset" + +.PHONY: clean +clean: + rm -rf html + rm -rf docset + rm -rf xml + +.PHONY: html +html: + $(PYTHON) ./build_min_docs.py + +.PHONY: docset +docset: + $(PYTHON) ./build_min_docs.py --docset |
