2023-03-28 17:33:34 +01:00
|
|
|
# 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
|
2023-05-25 10:52:29 +01:00
|
|
|
SOURCEDIR = .
|
|
|
|
|
BUILDDIR = _build
|
2023-03-28 17:33:34 +01:00
|
|
|
|
2023-06-08 15:57:38 +01:00
|
|
|
AUTOSUMMARY="source\_autosummary"
|
|
|
|
|
|
|
|
|
|
# Remove command is different depending on OS
|
|
|
|
|
ifdef OS
|
|
|
|
|
RM = IF exist $(AUTOSUMMARY) ( RMDIR $(AUTOSUMMARY) /s /q )
|
|
|
|
|
else
|
|
|
|
|
ifeq ($(shell uname), Linux)
|
|
|
|
|
RM = rm -rf $(AUTOSUMMARY)
|
|
|
|
|
endif
|
|
|
|
|
endif
|
|
|
|
|
|
2023-03-28 17:33:34 +01:00
|
|
|
# Put it first so that "make" without argument is like "make help".
|
|
|
|
|
help:
|
|
|
|
|
@$(SPHINXBUILD) -M help "$(SOURCEDIR)" "$(BUILDDIR)" $(SPHINXOPTS) $(O)
|
|
|
|
|
|
|
|
|
|
.PHONY: help Makefile
|
|
|
|
|
|
2023-06-08 15:57:38 +01:00
|
|
|
clean:
|
|
|
|
|
$(RM)
|
|
|
|
|
|
2023-03-28 17:33:34 +01:00
|
|
|
# Catch-all target: route all unknown targets to Sphinx using the new
|
|
|
|
|
# "make mode" option. $(O) is meant as a shortcut for $(SPHINXOPTS).
|
2023-06-08 15:57:38 +01:00
|
|
|
%: Makefile | clean
|
|
|
|
|
pip-licenses --format=rst --with-urls --output-file=source/primaite-dependencies.rst
|
|
|
|
|
|
2023-03-28 17:33:34 +01:00
|
|
|
@$(SPHINXBUILD) -M $@ "$(SOURCEDIR)" "$(BUILDDIR)" $(SPHINXOPTS) $(O)
|