You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
277 B
14 lines
277 B
8 months ago
|
.PHONY: all docs
|
||
|
|
||
|
all: docs
|
||
|
|
||
|
docs: SHELL:=/bin/bash
|
||
|
docs:
|
||
|
if [ ! -d "docs/.venv" ]; then python3 -m venv "docs/.venv"; fi
|
||
|
( \
|
||
|
source docs/.venv/bin/activate;\
|
||
|
pip install -r docs/requirements.txt; \
|
||
|
sphinx-build -b html docs/source docs/build/html; \
|
||
|
deactivate \
|
||
|
)
|