Skip to content
Snippets Groups Projects
Verified Commit 7af5fa61 authored by David Runge's avatar David Runge :chipmunk:
Browse files

fix: Fix doc generation targets and add all PHONY targets

parent 9d18e0f8
No related branches found
No related tags found
1 merge request!155Update dependencies
Pipeline #73011 failed
......@@ -25,12 +25,13 @@ lint:
docs:
repod-file schema export docs/schema/
sphinx-build -M html docs/ docs/_build/
sphinx-build -b man docs/ docs/_build/man/
PYTHONPATH="$(PWD)" sphinx-build -b html docs/ docs/_build/
PYTHONPATH="$(PWD)" sphinx-build -b man docs/ docs/_build/man/
system-docs:
python -c 'from repod import export_schemas; from pathlib import Path; export_schemas(Path("docs/schema/"))'
PYTHONPATH="$(PWD)" sphinx-build -M man docs/ docs/_build
PYTHONPATH="$(PWD)" sphinx-build -b html docs/ docs/_build/
PYTHONPATH="$(PWD)" sphinx-build -b man docs/ docs/_build/man/
build: $(SOURCES)
python -m build --wheel --no-isolation
......@@ -58,4 +59,4 @@ install:
clean:
rm -rf dist build docs/_build
.PHONY: all lint fmt test build clean install regex
.PHONY: all build clean coverage docs fmt install lint regex system-docs test
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment