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 ?=
|
2021-11-04 00:03:47 +03:00
|
|
|
SPHINXBUILD ?= sphinx-build
|
2020-11-04 20:17:02 +03:00
|
|
|
SOURCEDIR = .
|
2020-04-24 17:23:41 +03:00
|
|
|
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:
|
2021-11-04 02:41:08 +03:00
|
|
|
@$(SPHINXBUILD) -M help "$(SOURCEDIR)" "$(BUILDDIR)" $(SPHINXOPTS) $(O) -c .
|
2020-04-24 17:23:41 +03:00
|
|
|
|
|
|
|
# Build, watch and serve docs with live reload
|
|
|
|
livehtml:
|
|
|
|
sphinx-autobuild -b html
|
2020-09-07 16:06:18 +03:00
|
|
|
{%- if cookiecutter.use_docker == 'y' %} --host 0.0.0.0
|
2020-04-24 17:23:41 +03:00
|
|
|
{%- else %} --open-browser
|
2020-09-07 16:06:18 +03:00
|
|
|
{%- endif %} --port 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:
|
2021-11-03 23:15:40 +03:00
|
|
|
sphinx-apidoc -o $(SOURCEDIR)/api $(APP)
|
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
|
2021-11-04 02:41:08 +03:00
|
|
|
@$(SPHINXBUILD) -M $@ "$(SOURCEDIR)" "$(BUILDDIR)" $(SPHINXOPTS) $(O) -c .
|