Makefile 724 B

12345678910111213141516171819202122
  1. # Minimal makefile for Sphinx documentation
  2. #
  3. # You can set these variables from the command line.
  4. SPHINXOPTS =
  5. # Workaround to prevent lmdb from throwing an exception when loaded from Sphinx
  6. SPHINXBUILD = python -m sphinx
  7. #SPHINXBUILD = sphinx-build
  8. SPHINXPROJ = lakesuperior
  9. SOURCEDIR = .
  10. BUILDDIR = _build
  11. # Put it first so that "make" without argument is like "make help".
  12. help:
  13. @$(SPHINXBUILD) -M help "$(SOURCEDIR)" "$(BUILDDIR)" $(SPHINXOPTS) $(O)
  14. .PHONY: help Makefile
  15. # Catch-all target: route all unknown targets to Sphinx using the new
  16. # "make mode" option. $(O) is meant as a shortcut for $(SPHINXOPTS).
  17. %: Makefile
  18. @$(SPHINXBUILD) -M $@ "$(SOURCEDIR)" "$(BUILDDIR)" $(SPHINXOPTS) $(O)