Makefile 679 B

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