Skip to content
Snippets Groups Projects
Commit ac0799f0 authored by Antoine Lambert's avatar Antoine Lambert
Browse files

Makefile.sphinx: Fix some apidoc excludes values

Previous values did not prevent sphinx-apidoc to walk the content
of these directories resulting in really long processing when
directories contain a lof of entries (node_modules for instance).
parent 6335d122
No related branches found
No related tags found
1 merge request!139Makefile.sphinx: Fix some apidoc excludes values
......@@ -10,14 +10,10 @@ SPHINX_BUILDDIR = _build
SPHINX_SRCDIR = .
# relative to docs/ dir. Hence "." exclude the docs/ dir itself
APIDOC_EXCLUDES =
APIDOC_EXCLUDES += . ../setup.py
APIDOC_EXCLUDES = . ../setup.py
APIDOC_EXCLUDES += ../swh/*/tests ../swh/*/tests/* ../swh/*/*/tests/* ../swh/*/*/*/tests/*
APIDOC_EXCLUDES += ../swh/*/migrations ../swh/*/migrations/* ../swh/*/*/migrations/* ../swh/*/*/*/migrations/*
APIDOC_EXCLUDES += ../bin/*
APIDOC_EXCLUDES += ../utils/*
APIDOC_EXCLUDES += ../node_modules/*
APIDOC_EXCLUDES += ../bin ../dist ../utils ../node_modules
html: sphinx/html
help: sphinx/help
......
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