We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f9fdebe commit 50b3465Copy full SHA for 50b3465
Makefile
@@ -11,6 +11,7 @@ PATH := /usr/share/sphinx/scripts/python3:${PATH}
11
12
PACKAGE = trio_gpio
13
PYTHON ?= python3
14
+SPHINX ?= sphinx3-build
15
export PYTHONPATH=$(shell pwd)
16
17
PYTEST ?= ${PYTHON} $(shell which pytest-3)
@@ -33,7 +34,7 @@ SPHINXBUILDDIR ?= $(BUILD_DIR)/sphinx/html
33
34
ALLSPHINXOPTS ?= -d $(BUILD_DIR)/sphinx/doctrees $(SPHINXOPTS) docs
35
36
doc:
- sphinx3-build -a $(INPUT_DIR) $(BUILD_DIR)
37
+ $(SPHINX) -a $(INPUT_DIR) $(BUILD_DIR)
38
39
livehtml: docs
40
sphinx-autobuild $(AUTOSPHINXOPTS) $(ALLSPHINXOPTS) $(SPHINXBUILDDIR)
0 commit comments