2019-12-28 12:26:43 +03:00
|
|
|
# Minimal makefile for Sphinx documentation
|
2013-08-14 22:01:41 +04:00
|
|
|
#
|
|
|
|
|
2019-12-28 12:26:43 +03:00
|
|
|
# You can set these variables from the command line, and also
|
|
|
|
# from the environment for the first two.
|
2020-04-24 17:23:41 +03:00
|
|
|
SPHINXOPTS ?=
|
|
|
|
SPHINXBUILD ?= sphinx-build -c .
|
|
|
|
SOURCEDIR = ./_source
|
|
|
|
BUILDDIR = ./_build
|
|
|
|
{%- if cookiecutter.use_docker == 'y' %}
|
|
|
|
APP = /app
|
|
|
|
{%- else %}
|
|
|
|
APP = ../{{cookiecutter.project_slug}}
|
|
|
|
{% endif %}
|
|
|
|
|
|
|
|
.PHONY: help livehtml apidocs Makefile
|
2013-08-14 22:01:41 +04:00
|
|
|
|
2019-12-28 12:26:43 +03:00
|
|
|
# Put it first so that "make" without argument is like "make help".
|
2013-08-14 22:01:41 +04:00
|
|
|
help:
|
2020-04-24 17:23:41 +03:00
|
|
|
@$(SPHINXBUILD) help "$(SOURCEDIR)" "$(BUILDDIR)" $(SPHINXOPTS) $(O)
|
|
|
|
|
|
|
|
# Build, watch and serve docs with live reload
|
|
|
|
livehtml:
|
|
|
|
sphinx-autobuild -b html
|
|
|
|
{%- if cookiecutter.use_docker == 'y' %} -H 0.0.0.0
|
|
|
|
{%- else %} --open-browser
|
|
|
|
{%- endif %} -p 7000 --watch $(APP) -c . $(SOURCEDIR) $(BUILDDIR)/html
|
2013-08-14 22:01:41 +04:00
|
|
|
|
2020-04-24 17:23:41 +03:00
|
|
|
# Outputs rst files from django application code
|
|
|
|
apidocs:
|
|
|
|
{%- if cookiecutter.use_docker == 'y' %}
|
|
|
|
sphinx-apidoc -o $(SOURCEDIR)/api /app
|
|
|
|
{%- else %}
|
|
|
|
sphinx-apidoc -o $(SOURCEDIR)/api ../{{cookiecutter.project_slug}}
|
|
|
|
{%- endif %}
|
2013-08-14 22:01:41 +04:00
|
|
|
|
2019-12-28 12:26:43 +03:00
|
|
|
# Catch-all target: route all unknown targets to Sphinx using the new
|
|
|
|
# "make mode" option. $(O) is meant as a shortcut for $(SPHINXOPTS).
|
|
|
|
%: Makefile
|
2020-04-24 17:23:41 +03:00
|
|
|
@$(SPHINXBUILD) -b $@ "$(SOURCEDIR)" "$(BUILDDIR)" $(SPHINXOPTS) $(O)
|