2021-06-16 23:49:41 +02:00
|
|
|
# ------------------------------------------------------------------------------
|
|
|
|
# Makefile for documentation build
|
|
|
|
# SPDX-License-Identifier: Apache-2.0
|
2017-11-07 20:05:56 -05:00
|
|
|
|
2021-03-25 20:45:41 +01:00
|
|
|
BUILDDIR ?= _build
|
2018-07-13 11:55:54 +02:00
|
|
|
DOC_TAG ?= development
|
2021-05-12 18:23:33 +02:00
|
|
|
SPHINXOPTS ?= -j auto
|
2021-07-26 12:31:40 +02:00
|
|
|
LATEXMKOPTS ?= -halt-on-error -no-shell-escape
|
2021-01-08 14:31:05 -08:00
|
|
|
KCONFIG_TURBO_MODE ?= 0
|
2017-11-07 20:05:56 -05:00
|
|
|
|
2021-06-16 23:49:41 +02:00
|
|
|
# ------------------------------------------------------------------------------
|
2017-11-07 20:05:56 -05:00
|
|
|
# Documentation targets
|
2021-02-08 22:11:51 +00:00
|
|
|
|
2021-06-16 23:49:41 +02:00
|
|
|
.PHONY: configure clean html html-fast latex pdf doxygen
|
2019-02-05 09:53:16 -08:00
|
|
|
|
2021-06-16 23:49:41 +02:00
|
|
|
html-fast:
|
|
|
|
${MAKE} html KCONFIG_TURBO_MODE=1
|
2021-01-08 14:31:05 -08:00
|
|
|
|
2021-06-16 23:49:41 +02:00
|
|
|
html latex pdf doxygen: configure
|
|
|
|
cmake --build ${BUILDDIR} --target $@
|
2019-01-21 13:58:05 -05:00
|
|
|
|
2021-01-08 14:31:05 -08:00
|
|
|
configure:
|
2021-06-16 23:49:41 +02:00
|
|
|
cmake \
|
|
|
|
-GNinja \
|
|
|
|
-B${BUILDDIR} \
|
|
|
|
-S. \
|
|
|
|
-DDOC_TAG=${DOC_TAG} \
|
2021-05-12 18:23:33 +02:00
|
|
|
-DSPHINXOPTS="${SPHINXOPTS}" \
|
2021-07-26 12:31:40 +02:00
|
|
|
-DLATEXMKOPTS="${LATEXMKOPTS}" \
|
2021-01-08 14:31:05 -08:00
|
|
|
-DKCONFIG_TURBO_MODE=${KCONFIG_TURBO_MODE}
|
2020-04-10 08:07:55 -04:00
|
|
|
|
2021-02-08 22:11:51 +00:00
|
|
|
clean:
|
2021-06-16 23:49:41 +02:00
|
|
|
cmake --build ${BUILDDIR} --target clean
|