2020-03-18 03:01:21 -05:00
|
|
|
# Minimal makefile for Sphinx documentation
|
|
|
|
#
|
|
|
|
|
|
|
|
# You can set these variables from the command line, and also
|
|
|
|
# from the environment for the first two.
|
2020-04-21 10:51:51 -05:00
|
|
|
PYTHON ?= python3
|
|
|
|
VENVDIR = ./.venv
|
|
|
|
SPHINXOPTS ?= -W --keep-going -j auto
|
|
|
|
SPHINXBUILD ?= PATH=$(VENVDIR)/bin:$$PATH sphinx-build
|
2020-03-18 03:01:21 -05:00
|
|
|
SOURCEDIR = .
|
|
|
|
BUILDDIR = _build
|
|
|
|
|
|
|
|
# Put it first so that "make" without argument is like "make help".
|
|
|
|
help:
|
|
|
|
@$(SPHINXBUILD) -M help "$(SOURCEDIR)" "$(BUILDDIR)" $(SPHINXOPTS) $(O)
|
2020-04-21 10:51:51 -05:00
|
|
|
@echo " lint to check and lint documentation"
|
|
|
|
@echo " venv to create an isolated venv"
|
2020-03-18 03:01:21 -05:00
|
|
|
|
|
|
|
.PHONY: help Makefile
|
|
|
|
|
|
|
|
# Catch-all target: route all unknown targets to Sphinx using the new
|
|
|
|
# "make mode" option. $(O) is meant as a shortcut for $(SPHINXOPTS).
|
|
|
|
%: Makefile
|
|
|
|
@$(SPHINXBUILD) -M $@ "$(SOURCEDIR)" "$(BUILDDIR)" $(SPHINXOPTS) $(O)
|
2020-03-18 04:14:43 -05:00
|
|
|
|
2020-04-21 10:51:51 -05:00
|
|
|
.PHONY: lint
|
|
|
|
lint:
|
|
|
|
$(MAKE) html SPHINXOPTS="$(SPHINXOPTS) -E -a"
|
|
|
|
|
|
|
|
.PHONY: distclean
|
|
|
|
distclean: clean
|
|
|
|
rm -rf $(VENVDIR)
|
|
|
|
|
|
|
|
.PHONY: venv
|
|
|
|
venv:
|
|
|
|
$(PYTHON) -m venv $(VENVDIR)
|
|
|
|
$(VENVDIR)/bin/python3 -m pip install -U pip setuptools
|
2022-07-25 08:07:09 -05:00
|
|
|
$(VENVDIR)/bin/python3 -m pip install -U -r ./requirements.txt \
|
|
|
|
-c constraints.txt
|