# Makefile for Sphinx documentation
#

# You can set these variables from the command line.
SPHINXBUILD   = python3 -msphinx
BUILDDIR      = ../docs

# Internal variables.
ALLSPHINXOPTS   = .

.PHONY: help
help:
	@echo "Please use \`make <target>' where <target> is one of"
	@echo "  html        to make standalone HTML files"

.PHONY: html
html:
	$(SPHINXBUILD) -b html $(ALLSPHINXOPTS) $(BUILDDIR)
	@echo
	@echo "Build finished. The HTML pages are in $(BUILDDIR)."
