mirror of
https://github.com/isc-projects/bind9.git
synced 2026-03-02 13:30:44 -05: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.
(cherry picked from commit 9110465194)
15 lines
315 B
Makefile
15 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
|