Makefile 736 B

123456789101112131415161718192021
  1. # Minimal makefile for Sphinx documentation
  2. #
  3. # You can set these variables from the command line.
  4. SPHINXOPTS =
  5. SPHINXBUILD = sphinx-build
  6. SPINXAPI = sphinx-apidoc
  7. SOURCEDIR = .
  8. BUILDDIR = api
  9. # Put it first so that "make" without argument is like "make help".
  10. help:
  11. @$(SPHINXBUILD) -M help "$(SOURCEDIR)" "$(BUILDDIR)" $(SPHINXOPTS) $(O)
  12. .PHONY: help Makefile
  13. # Catch-all target: route all unknown targets to Sphinx using the new
  14. # "make mode" option. $(O) is meant as a shortcut for $(SPHINXOPTS).
  15. %: Makefile
  16. @$(SPINXAPI) --separate --private -f --module-first --ext-autodoc --ext-coverage --ext-viewcode -o "$(SOURCEDIR)/generated" ../
  17. @$(SPHINXBUILD) -M $@ "$(SOURCEDIR)" "$(BUILDDIR)" $(SPHINXOPTS) $(O)