You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

20 lines
463 B

  1. # Makefile for Sphinx documentation
  2. #
  3. # You can set these variables from the command line.
  4. SPHINXBUILD = sphinx-build
  5. BUILDDIR = ../docs
  6. # Internal variables.
  7. ALLSPHINXOPTS = .
  8. .PHONY: help
  9. help:
  10. @echo "Please use \`make <target>' where <target> is one of"
  11. @echo " html to make standalone HTML files"
  12. .PHONY: html
  13. html:
  14. $(SPHINXBUILD) -b html $(ALLSPHINXOPTS) $(BUILDDIR)
  15. @echo
  16. @echo "Build finished. The HTML pages are in $(BUILDDIR)."