aboutsummaryrefslogtreecommitdiff
blob: f49201a1aaf63847459c03c167f99977eec4dfa0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
PYTHON ?= python

SPHINX_BUILD ?= sphinx-build

.PHONY: man html
man html:
	$(SPHINX_BUILD) -a -b $@ doc build/sphinx/$@

.PHONY: sdist wheel
sdist wheel:
	$(PYTHON) -m build --$@

.PHONY: clean
clean:
	$(RM) -r build/sphinx doc/api dist