blob: d354d169e6d3a01acc1719e74fe503508c67d45e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
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
|