2017-01-20 05:11:53 +01:00
|
|
|
OS := $(shell uname -s)
|
2017-01-18 03:55:03 +01:00
|
|
|
SITELIB = $(shell python -c "from distutils.sysconfig import get_python_lib; print get_python_lib()"):
|
2020-07-17 22:07:35 +02:00
|
|
|
PLUGIN_FORMATTER=../../hacking/build-ansible.py docs-build
|
2017-07-14 15:24:45 +02:00
|
|
|
TESTING_FORMATTER=../bin/testing_formatter.sh
|
2019-07-16 21:19:01 +02:00
|
|
|
KEYWORD_DUMPER=../../hacking/build-ansible.py document-keywords
|
|
|
|
CONFIG_DUMPER=../../hacking/build-ansible.py document-config
|
|
|
|
GENERATE_CLI=../../hacking/build-ansible.py generate-man
|
2019-07-22 22:50:46 +02:00
|
|
|
COLLECTION_DUMPER=../../hacking/build-ansible.py collection-meta
|
2017-01-20 04:50:29 +01:00
|
|
|
ifeq ($(shell echo $(OS) | egrep -ic 'Darwin|FreeBSD|OpenBSD|DragonFly'),1)
|
2017-01-20 05:09:55 +01:00
|
|
|
CPUS ?= $(shell sysctl hw.ncpu|awk '{print $$2}')
|
2017-01-13 20:38:02 +01:00
|
|
|
else
|
2017-01-20 05:09:55 +01:00
|
|
|
CPUS ?= $(shell nproc)
|
2017-01-13 20:38:02 +01:00
|
|
|
endif
|
2012-10-08 13:44:38 +02:00
|
|
|
|
2021-03-05 18:31:56 +01:00
|
|
|
# Intenationalisation and Localisation
|
|
|
|
LANGUAGES ?=
|
|
|
|
|
2020-07-17 22:07:35 +02:00
|
|
|
# Sets the build output directory for the main docsite if it's not already specified
|
2018-03-01 01:01:18 +01:00
|
|
|
ifndef BUILDDIR
|
|
|
|
BUILDDIR = _build
|
|
|
|
endif
|
|
|
|
|
2021-03-05 18:31:56 +01:00
|
|
|
ifndef POTDIR
|
|
|
|
POTDIR = $(BUILDDIR)/gettext
|
|
|
|
endif
|
|
|
|
|
2020-07-17 22:07:35 +02:00
|
|
|
# Backwards compat for separate VARS
|
|
|
|
PLUGIN_ARGS=
|
2017-09-19 17:14:27 +02:00
|
|
|
ifdef MODULES
|
2020-07-17 22:07:35 +02:00
|
|
|
ifndef PLUGINS
|
|
|
|
PLUGIN_ARGS = -l $(MODULES)
|
|
|
|
else
|
|
|
|
PLUGIN_ARGS = -l $(MODULES),$(PLUGINS)
|
2017-09-19 17:14:27 +02:00
|
|
|
endif
|
2020-07-17 22:07:35 +02:00
|
|
|
else
|
2017-09-19 17:14:27 +02:00
|
|
|
ifdef PLUGINS
|
|
|
|
PLUGIN_ARGS = -l $(PLUGINS)
|
|
|
|
endif
|
2020-07-17 22:07:35 +02:00
|
|
|
endif
|
|
|
|
|
2021-02-17 16:57:05 +01:00
|
|
|
ANSIBLE_VERSION_ARGS=
|
|
|
|
ifdef ANSIBLE_VERSION
|
|
|
|
ANSIBLE_VERSION_ARGS=--ansible-version=$(ANSIBLE_VERSION)
|
|
|
|
endif
|
2017-09-19 17:14:27 +02:00
|
|
|
|
2019-12-20 07:55:59 +01:00
|
|
|
DOC_PLUGINS ?= become cache callback cliconf connection httpapi inventory lookup netconf shell strategy vars
|
2017-09-23 05:19:50 +02:00
|
|
|
|
2020-07-17 22:07:35 +02:00
|
|
|
PYTHON=python
|
|
|
|
# fetch version from project release.py as single source-of-truth
|
|
|
|
VERSION := $(shell $(PYTHON) ../../packaging/release/versionhelper/version_helper.py --raw || echo error)
|
|
|
|
ifeq ($(findstring error,$(VERSION)), error)
|
|
|
|
$(error "version_helper failed")
|
|
|
|
endif
|
|
|
|
|
2021-02-17 16:57:05 +01:00
|
|
|
MAJOR_VERSION := $(shell $(PYTHON) ../../packaging/release/versionhelper/version_helper.py --majorversion || echo error)
|
|
|
|
ifeq ($(findstring error,$(MAJOR_VERSION)), error)
|
|
|
|
$(error "version_helper failed to determine major version")
|
|
|
|
endif
|
|
|
|
|
2017-06-02 20:11:28 +02:00
|
|
|
assertrst:
|
|
|
|
ifndef rst
|
|
|
|
$(error specify document or pattern with rst=somefile.rst)
|
|
|
|
endif
|
|
|
|
|
2017-01-18 03:55:03 +01:00
|
|
|
all: docs
|
2012-10-08 13:44:38 +02:00
|
|
|
|
2018-09-12 22:50:36 +02:00
|
|
|
docs: htmldocs
|
2014-05-09 23:13:01 +02:00
|
|
|
|
2021-02-17 16:57:05 +01:00
|
|
|
coredocs: core_htmldocs
|
|
|
|
|
2020-07-17 22:07:35 +02:00
|
|
|
generate_rst: collections_meta config cli keywords plugins testing
|
2021-02-17 16:57:05 +01:00
|
|
|
core_generate_rst: collections_meta config cli keywords base_plugins testing
|
|
|
|
|
2021-03-05 18:31:56 +01:00
|
|
|
# At the moment localizing the plugins and collections is not required for the ongoing
|
|
|
|
# localisation effort. It will come at a later time.
|
|
|
|
gettext_generate_rst: collections_meta config cli keywords testing
|
|
|
|
|
2021-02-17 16:57:05 +01:00
|
|
|
# The following two symlinks are necessary to produce two different docsets
|
|
|
|
# from the same set of rst files (Ansible the package docs, and core docs).
|
|
|
|
# Symlink the relevant index into place for building Ansible docs
|
2021-04-21 21:15:27 +02:00
|
|
|
ansible_structure:
|
2021-02-17 16:57:05 +01:00
|
|
|
# We must have python and python-packaging for the version_helper
|
|
|
|
# script so use it for version comparison
|
|
|
|
if python -c "import sys, packaging.version as p; sys.exit(not p.Version('$(MAJOR_VERSION)') > p.Version('2.10'))" ; then \
|
2021-04-21 21:15:27 +02:00
|
|
|
echo "Creating symlinks in ansible_structure"; \
|
2021-02-17 16:57:05 +01:00
|
|
|
ln -sf ../rst/ansible_index.rst rst/index.rst; \
|
|
|
|
ln -sf ../sphinx_conf/ansible_conf.py rst/conf.py; \
|
|
|
|
else \
|
2021-04-21 21:15:27 +02:00
|
|
|
echo 'Creating symlinks for older ansible in ansible_structure'; \
|
2021-02-17 16:57:05 +01:00
|
|
|
ln -sf ../rst/2.10_index.rst rst/index.rst; \
|
|
|
|
ln -sf ../sphinx_conf/2.10_conf.py rst/conf.py; \
|
|
|
|
fi
|
|
|
|
|
|
|
|
# Symlink the relevant index into place for building core docs
|
2021-04-21 21:15:27 +02:00
|
|
|
core_structure:
|
|
|
|
@echo "Creating symlinks in core_structure"
|
2021-02-17 16:57:05 +01:00
|
|
|
-ln -sf ../rst/core_index.rst rst/index.rst
|
|
|
|
-ln -sf ../sphinx_conf/core_conf.py rst/conf.py
|
2017-09-07 21:44:20 +02:00
|
|
|
|
2021-03-05 18:31:56 +01:00
|
|
|
# Symlink the relevant index into place for building core docs
|
2021-04-21 21:15:27 +02:00
|
|
|
gettext_structure:
|
|
|
|
@echo "Creating symlinks in gettext_structure"
|
2021-03-05 18:31:56 +01:00
|
|
|
-ln -sf ../rst/core_index.rst rst/index.rst
|
|
|
|
-ln -sf ../sphinx_conf/all_conf.py rst/conf.py
|
|
|
|
|
2021-04-21 21:15:27 +02:00
|
|
|
gettext: gettext_structure gettext_generate_rst
|
2021-03-05 18:31:56 +01:00
|
|
|
CPUS=$(CPUS) $(MAKE) -f Makefile.sphinx gettext
|
|
|
|
# if msgcat is installed handle all indexes, otherwise use the index from gettext_structure.
|
|
|
|
-msgcat "$(POTDIR)/core_index.pot" "$(POTDIR)/ansible_index.pot" "$(POTDIR)/2.10_index.pot" > "$(POTDIR)/tmp_index.pot" && mv "$(POTDIR)/tmp_index.pot" "$(POTDIR)/index.pot"
|
|
|
|
rm "$(POTDIR)/core_index.pot" "$(POTDIR)/ansible_index.pot" "$(POTDIR)/2.10_index.pot"
|
|
|
|
|
|
|
|
generate-po:
|
|
|
|
ifeq ($(LANGUAGES),)
|
|
|
|
@echo 'LANGUAGES is not defined. It is mandatory. LANGUAGES should be a comma separated list of languages to support. (Exampe: fr,es)'
|
|
|
|
else
|
|
|
|
(cd docs/docsite/; sphinx-intl update -w 0 -d rst/locales -p "$(POTDIR)" -l $(LANGUAGES))
|
|
|
|
endif
|
|
|
|
|
|
|
|
needs-translation:
|
|
|
|
ifeq ($(LANGUAGES),)
|
|
|
|
@echo 'LANGUAGES is not defined. It is mandatory. LANGUAGES should be a comma separated list of languages to support. (Exampe: fr,es)'
|
|
|
|
else
|
|
|
|
(cd docs/docsite/; sphinx-intl stat -d rst/locales -l $(LANGUAGES) | grep -E ' [1-9][0-9]* (fuzzy|untranslated)' | sort)
|
|
|
|
endif
|
|
|
|
|
2021-04-21 21:15:27 +02:00
|
|
|
htmldocs: ansible_structure generate_rst
|
2017-01-13 20:32:27 +01:00
|
|
|
CPUS=$(CPUS) $(MAKE) -f Makefile.sphinx html
|
2012-10-08 13:44:38 +02:00
|
|
|
|
2021-04-21 21:15:27 +02:00
|
|
|
core_htmldocs: core_structure core_generate_rst
|
2020-07-17 22:07:35 +02:00
|
|
|
CPUS=$(CPUS) $(MAKE) -f Makefile.sphinx html
|
|
|
|
|
2021-04-21 21:15:27 +02:00
|
|
|
singlehtmldocs: ansible_structure generate_rst
|
2017-09-13 22:45:05 +02:00
|
|
|
CPUS=$(CPUS) $(MAKE) -f Makefile.sphinx singlehtml
|
|
|
|
|
2021-04-21 21:15:27 +02:00
|
|
|
core_singlehtmldocs: core_structure core_generate_rst
|
2020-07-17 22:07:35 +02:00
|
|
|
CPUS=$(CPUS) $(MAKE) -f Makefile.sphinx singlehtml
|
|
|
|
|
2021-04-21 21:15:27 +02:00
|
|
|
# Note: The linkcheckdocs and htmlsingle targets depend on gettext_structure
|
|
|
|
# because that one does not exclude any rst files in its conf.py.
|
|
|
|
linkcheckdocs: gettext_structure generate_rst
|
2021-02-17 16:57:05 +01:00
|
|
|
CPUS=$(CPUS) $(MAKE) -f Makefile.sphinx linkcheck
|
2020-07-17 22:07:35 +02:00
|
|
|
|
2021-04-21 21:15:27 +02:00
|
|
|
htmlsingle: assertrst gettext_structure
|
|
|
|
sphinx-build -j $(CPUS) -b html -d $(BUILDDIR)/doctrees ./rst $(BUILDDIR)/html rst/$(rst)
|
|
|
|
@echo "Output is in $(BUILDDIR)/html/$(rst:.rst=.html)"
|
|
|
|
|
2017-01-18 03:55:03 +01:00
|
|
|
webdocs: docs
|
2016-01-25 16:33:50 +01:00
|
|
|
|
2017-01-18 03:55:03 +01:00
|
|
|
#TODO: leaving htmlout removal for those having older versions, should eventually be removed also
|
2012-10-08 13:44:38 +02:00
|
|
|
clean:
|
2018-03-01 01:01:18 +01:00
|
|
|
@echo "Cleaning $(BUILDDIR)"
|
|
|
|
-rm -rf $(BUILDDIR)/doctrees
|
|
|
|
-rm -rf $(BUILDDIR)/html
|
2013-06-09 19:55:58 +02:00
|
|
|
-rm -rf htmlout
|
2017-12-21 10:47:39 +01:00
|
|
|
-rm -rf module_docs
|
2020-07-17 22:07:35 +02:00
|
|
|
-rm -rf $(BUILDDIR)
|
2012-10-08 13:44:38 +02:00
|
|
|
-rm -f .buildinfo
|
2017-04-10 20:01:10 +02:00
|
|
|
-rm -f objects.inv
|
2012-10-08 13:44:38 +02:00
|
|
|
-rm -rf *.doctrees
|
2014-01-03 02:35:29 +01:00
|
|
|
@echo "Cleaning up minified css files"
|
|
|
|
find . -type f -name "*.min.css" -delete
|
2012-10-08 13:44:38 +02:00
|
|
|
@echo "Cleaning up byte compiled python stuff"
|
|
|
|
find . -regex ".*\.py[co]$$" -delete
|
|
|
|
@echo "Cleaning up editor backup files"
|
|
|
|
find . -type f \( -name "*~" -or -name "#*" \) -delete
|
|
|
|
find . -type f \( -name "*.swp" \) -delete
|
2014-01-28 17:04:34 +01:00
|
|
|
@echo "Cleaning up generated rst"
|
2018-10-19 23:06:15 +02:00
|
|
|
rm -f rst/playbooks_directives.rst
|
|
|
|
rm -f rst/reference_appendices/config.rst
|
|
|
|
rm -f rst/reference_appendices/playbooks_keywords.rst
|
2019-07-22 22:50:46 +02:00
|
|
|
rm -f rst/dev_guide/collections_galaxy_meta.rst
|
2019-08-21 08:53:35 +02:00
|
|
|
rm -f rst/cli/*.rst
|
2020-12-18 17:55:31 +01:00
|
|
|
for filename in `ls rst/collections/` ; do \
|
|
|
|
if test x"$$filename" != x'all_plugins.rst' ; then \
|
|
|
|
rm -rf "rst/collections/$$filename"; \
|
|
|
|
fi \
|
|
|
|
done
|
2021-02-17 16:57:05 +01:00
|
|
|
@echo "Cleanning up generated ansible_structure"
|
2021-04-21 21:15:27 +02:00
|
|
|
find . -type l -delete
|
2020-07-17 22:07:35 +02:00
|
|
|
@echo "Cleaning up legacy generated rst locations"
|
|
|
|
rm -rf rst/modules
|
|
|
|
rm -f rst/plugins/*/*.rst
|
2012-10-08 13:44:38 +02:00
|
|
|
|
2018-02-13 19:52:13 +01:00
|
|
|
.PHONY: docs clean
|
2012-10-08 13:44:38 +02:00
|
|
|
|
2019-07-22 22:50:46 +02:00
|
|
|
collections_meta: ../templates/collections_galaxy_meta.rst.j2
|
2020-07-17 22:07:35 +02:00
|
|
|
$(COLLECTION_DUMPER) --template-file=../templates/collections_galaxy_meta.rst.j2 --output-dir=rst/dev_guide/ ../../lib/ansible/galaxy/data/collections_galaxy_meta.yml
|
2019-07-22 22:50:46 +02:00
|
|
|
|
2017-09-07 21:44:20 +02:00
|
|
|
# TODO: make generate_man output dir cli option
|
2019-07-16 21:19:01 +02:00
|
|
|
cli:
|
2018-02-13 23:43:26 +01:00
|
|
|
mkdir -p rst/cli
|
2020-07-17 22:07:35 +02:00
|
|
|
$(GENERATE_CLI) --template-file=../templates/cli_rst.j2 --output-dir=rst/cli/ --output-format rst ../../lib/ansible/cli/*.py
|
2017-09-07 21:44:20 +02:00
|
|
|
|
2019-07-16 21:19:01 +02:00
|
|
|
keywords: ../templates/playbooks_keywords.rst.j2
|
2020-11-09 15:55:17 +01:00
|
|
|
$(KEYWORD_DUMPER) --template-dir=../templates --output-dir=rst/reference_appendices/ ../../lib/ansible/keyword_desc.yml
|
2016-02-25 22:41:50 +01:00
|
|
|
|
2019-07-16 21:19:01 +02:00
|
|
|
config: ../templates/config.rst.j2
|
2020-07-17 22:07:35 +02:00
|
|
|
$(CONFIG_DUMPER) --template-file=../templates/config.rst.j2 --output-dir=rst/reference_appendices/ ../../lib/ansible/config/base.yml
|
|
|
|
|
|
|
|
# For now, if we're building on devel, just build base docs. In the future we'll want to build docs that
|
|
|
|
# are the latest versions on galaxy (using a different antsibull-docs subcommand)
|
|
|
|
plugins:
|
2021-02-17 16:57:05 +01:00
|
|
|
$(PLUGIN_FORMATTER) full -o rst $(ANSIBLE_VERSION_ARGS) $(PLUGIN_ARGS);\
|
2020-07-17 22:07:35 +02:00
|
|
|
|
2021-03-17 21:07:38 +01:00
|
|
|
# This only builds the plugin docs included with ansible-core
|
2020-07-17 22:07:35 +02:00
|
|
|
base_plugins:
|
|
|
|
$(PLUGIN_FORMATTER) base -o rst $(PLUGIN_ARGS);\
|
2012-10-08 13:44:38 +02:00
|
|
|
|
2017-07-14 15:24:45 +02:00
|
|
|
testing:
|
|
|
|
$(TESTING_FORMATTER)
|
|
|
|
|
2017-05-01 19:40:49 +02:00
|
|
|
epub:
|
2018-05-25 05:30:14 +02:00
|
|
|
(CPUS=$(CPUS) $(MAKE) -f Makefile.sphinx epub)
|