co3/Makefile

17 lines
351 B
Makefile
Raw Normal View History

2024-03-29 06:11:30 +00:00
PYTHON=/home/smgr/.pyenv/versions/co4/bin/python
BASH=/usr/bin/bash
## ------------------ docs ------------------ ##
docs-build:
sphinx-apidoc --module-first -o docs/_autoref/ co4
make -C docs/ html
docs-serve:
cd docs/_build/html && python -m http.server 9090
docs-clean:
make -C docs/ clean
## ------------------------------------------ ##