Skip to content

Commit 4e58808

Browse files
committed
add extra tags to makefile
1 parent fc382c5 commit 4e58808

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

docs/docsite/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ else
102102
endif
103103

104104
htmldocs: ansible_structure generate_rst
105-
CPUS=$(CPUS) $(MAKE) -f Makefile.sphinx 'DOCS_VARIANTS=-t ansible' html
105+
CPUS=$(CPUS) $(MAKE) -f Makefile.sphinx 'DOCS_VARIANTS=-t ansible $(EXTRA_TAGS)' html
106106

107107
core_htmldocs: core_structure core_generate_rst
108108
ifdef LANGOPTS

docs/docsite/Makefile.sphinx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,11 @@
22
#
33

44
# You can set these variables from the command line.
5+
EXTRA_TAGS ?=
56
DOCS_VARIANTS ?=
67
SPHINXCONFDIR = rst
78
LANGOPTS ?=
8-
SPHINXOPTS ?= -j $(CPUS) -n -w rst_warnings -c "$(SPHINXCONFDIR)" $(DOCS_VARIANTS) $(LANGOPTS)
9+
SPHINXOPTS ?= -j $(CPUS) -n -w rst_warnings -c "$(SPHINXCONFDIR)" $(DOCS_VARIANTS) $(EXTRA_TAGS) $(LANGOPTS)
910
SPHINXBUILD = sphinx-build
1011
SPHINXPROJ = sdfsdf
1112
SOURCEDIR = rst

0 commit comments

Comments
 (0)