mirror of
https://gitlab.isc.org/isc-projects/bind9.git
synced 2025-04-18 09:44:09 +03:00
We don't need them in the repo, it's sufficient if we pregenerate them while preparing the tarball. That way we don't have overhead while modifying them but they are still available for installations without Sphinx. I assume that this will make rebases and cherry-picks across branches easier, with less trial and error churn required in the CI. It's implemented in the way that we build the manpages only when we either have pregenerated pages available at the configure time or sphinx-build is installed and working.
16 lines
315 B
Makefile
16 lines
315 B
Makefile
SUBDIRS = .
|
|
|
|
if HAVE_PERL
|
|
SUBDIRS += misc
|
|
endif
|
|
|
|
# Do not change this line to "SUBDIRS = man" at the top of this file: in
|
|
# maintainer mode, the "man" subdirectory depends on the "misc" subdirectory.
|
|
if BUILD_MANPAGES
|
|
SUBDIRS += man
|
|
endif BUILD_MANPAGES
|
|
|
|
if HAVE_SPHINX_BUILD
|
|
SUBDIRS += arm
|
|
endif HAVE_SPHINX_BUILD
|