Skip to content

Commit 0a58fe8

Browse files
committedApr 11, 2020
doc: provide a target to only generate doxygen
Sometimes you are only interested in doxygen, so need to wait 10 minutes for everything to generate in this case. Now just do: make doxygen and get only the doxygen output. Signed-off-by: Anas Nashif <anas.nashif@intel.com>
1 parent d280660 commit 0a58fe8

File tree

2 files changed

+9
-0
lines changed

2 files changed

+9
-0
lines changed
 

‎Makefile

+3
Original file line numberDiff line numberDiff line change
@@ -19,3 +19,6 @@ htmldocs-fast:
1919

2020
pdfdocs:
2121
mkdir -p ${BUILDDIR} && cmake -GNinja -DDOC_TAG=${DOC_TAG} -DSPHINXOPTS=${SPHINXOPTS} -B${BUILDDIR} -Hdoc/ && ninja -C ${BUILDDIR} pdfdocs
22+
23+
doxygen:
24+
mkdir -p ${BUILDDIR} && cmake -GNinja -DDOC_TAG=${DOC_TAG} -DSPHINXOPTS=${SPHINXOPTS} -B${BUILDDIR} -Hdoc/ && ninja -C ${BUILDDIR} doxygen

‎doc/CMakeLists.txt

+6
Original file line numberDiff line numberDiff line change
@@ -347,6 +347,12 @@ add_custom_target(
347347
)
348348
add_dependencies(htmldocs html)
349349

350+
351+
add_custom_target(
352+
doxygen
353+
)
354+
add_dependencies(doxygen doxy_real_modified_times)
355+
350356
add_dependencies(latex content doxy_real_modified_times kconfig)
351357

352358
add_custom_target(

0 commit comments

Comments
 (0)
Please sign in to comment.