co3/Makefile
2024-03-28 23:11:30 -07:00

17 lines
351 B
Makefile

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
## ------------------------------------------ ##