Skip to content
Snippets Groups Projects
Makefile 899 B
Newer Older
# Minimal makefile for Sphinx documentation
#

# You can set these variables from the command line, and also
# from the environment for the first two.
SPHINXOPTS    ?=
SPHINXBUILD   ?= sphinx-build
SOURCEDIR     = .
BUILDDIR      = _build

# Put it first so that "make" without argument is like "make help".
help:
	@$(SPHINXBUILD) -M help "$(SOURCEDIR)" "$(BUILDDIR)" $(SPHINXOPTS) $(O)

.PHONY: help Makefile gen_rst env_setup clean

gen_rst:
	find .. -name src -exec sphinx-apidoc -e -M -f --ext-autodoc -o source/api {} \;
env_setup:
	pip3 install -r requirements.txt

# Catch-all target: route all unknown targets to Sphinx using the new
# "make mode" option.  $(O) is meant as a shortcut for $(SPHINXOPTS).
	@$(SPHINXBUILD) -M $@ "$(SOURCEDIR)" "$(BUILDDIR)" $(SPHINXOPTS) $(O)
Daniel Lyons's avatar
Daniel Lyons committed
# regenerate the API documentation
regenerate:
	./regenerate.sh