configure.ac: add --disable-docs option to disable doc building

Using this option to configure will disable the building of the dthelp
and dtinfo documentation files.
This commit is contained in:
Jon Trulson
2022-07-04 15:53:53 -06:00
parent 2a988df4c3
commit 73c7cdd7fb
2 changed files with 12 additions and 1 deletions

View File

@@ -9,5 +9,9 @@ MAINTAINERCLEANFILES = Makefile.in \
config.h.in \
install-sh
SUBDIRS = util lib programs include doc
SUBDIRS = util lib programs include
if BUILD_DOCS
SUBDIRS += doc
endif