mirror of
https://gitlab.isc.org/isc-projects/kea
synced 2025-08-29 13:07:50 +00:00
[1687] rename configure's --enable-man to --enable-generate-docs
This commit is contained in:
parent
d7d8c3a081
commit
932ddbdd34
14
configure.ac
14
configure.ac
@ -1016,15 +1016,15 @@ AC_SUBST(PERL)
|
|||||||
AC_PATH_PROGS(AWK, gawk awk)
|
AC_PATH_PROGS(AWK, gawk awk)
|
||||||
AC_SUBST(AWK)
|
AC_SUBST(AWK)
|
||||||
|
|
||||||
AC_ARG_ENABLE(man, [AC_HELP_STRING([--enable-man],
|
AC_ARG_ENABLE(generate_docs, [AC_HELP_STRING([--enable-generate-docs],
|
||||||
[regenerate man pages using Docbook [default=no]])],
|
[regenerate documentation using Docbook [default=no]])],
|
||||||
enable_man=$enableval, enable_man=no)
|
enable_generate_docs=$enableval, enable_generate_docs=no)
|
||||||
|
|
||||||
# Check for xsltproc
|
# Check for xsltproc
|
||||||
if test "x$enable_man" != xno ; then
|
if test "x$enable_generate_docs" != xno ; then
|
||||||
AC_PATH_PROG([XSLTPROC], [xsltproc])
|
AC_PATH_PROG([XSLTPROC], [xsltproc])
|
||||||
if test -z "$XSLTPROC"; then
|
if test -z "$XSLTPROC"; then
|
||||||
AC_MSG_ERROR("xsltproc not found; it is required for --enable-man")
|
AC_MSG_ERROR("xsltproc not found; it is required for --enable-generate-docs")
|
||||||
else
|
else
|
||||||
AC_MSG_CHECKING([if $XSLTPROC works])
|
AC_MSG_CHECKING([if $XSLTPROC works])
|
||||||
# run xsltproc to see if works
|
# run xsltproc to see if works
|
||||||
@ -1041,7 +1041,7 @@ if test "x$enable_man" != xno ; then
|
|||||||
fi
|
fi
|
||||||
|
|
||||||
|
|
||||||
AM_CONDITIONAL(ENABLE_MAN, test x$enable_man != xno)
|
AM_CONDITIONAL(GENERATE_DOCS, test x$enable_generate_docs != xno)
|
||||||
|
|
||||||
AC_ARG_ENABLE(install-configurations,
|
AC_ARG_ENABLE(install-configurations,
|
||||||
[AC_HELP_STRING([--disable-install-configurations],
|
[AC_HELP_STRING([--disable-install-configurations],
|
||||||
@ -1385,7 +1385,7 @@ Developer:
|
|||||||
C++ Code Coverage: $USE_LCOV
|
C++ Code Coverage: $USE_LCOV
|
||||||
Python Code Coverage: $USE_PYCOVERAGE
|
Python Code Coverage: $USE_PYCOVERAGE
|
||||||
Logger checks: $enable_logger_checks
|
Logger checks: $enable_logger_checks
|
||||||
Generate Manuals: $enable_man
|
Generate Documentation: $enable_generate_docs
|
||||||
|
|
||||||
END
|
END
|
||||||
|
|
||||||
|
@ -9,7 +9,7 @@ EXTRA_DIST = bind10-guide.xml
|
|||||||
CLEANFILES = $(HTMLDOCS) $(DOCS) bind10-messages.xml
|
CLEANFILES = $(HTMLDOCS) $(DOCS) bind10-messages.xml
|
||||||
|
|
||||||
# This is not a "man" manual, but reuse this for now for docbook.
|
# This is not a "man" manual, but reuse this for now for docbook.
|
||||||
if ENABLE_MAN
|
if GENERATE_DOCS
|
||||||
|
|
||||||
bind10-guide.html: bind10-guide.xml
|
bind10-guide.html: bind10-guide.xml
|
||||||
@XSLTPROC@ --novalid --xinclude --nonet \
|
@XSLTPROC@ --novalid --xinclude --nonet \
|
||||||
@ -40,7 +40,7 @@ bind10-messages.xml:
|
|||||||
else
|
else
|
||||||
|
|
||||||
$(HTMLDOCS) $(DOCS):
|
$(HTMLDOCS) $(DOCS):
|
||||||
@echo Doc generation disabled. Creating dummy $@. Configure with --enable-man to enable it.
|
@echo Doc generation disabled. Creating dummy $@. Configure with --enable-generate-docs to enable it.
|
||||||
@echo Doc generation disabled. Remove this file, configure with --enable-man, and rebuild BIND 10 > $@
|
@echo Doc generation disabled. Remove this file, configure with --enable-generate-docs, and rebuild BIND 10 > $@
|
||||||
|
|
||||||
endif
|
endif
|
||||||
|
@ -23,7 +23,7 @@ man_MANS = b10-auth.8
|
|||||||
CLEANFILES += $(man_MANS)
|
CLEANFILES += $(man_MANS)
|
||||||
EXTRA_DIST = $(man_MANS) b10-auth.xml
|
EXTRA_DIST = $(man_MANS) b10-auth.xml
|
||||||
|
|
||||||
if ENABLE_MAN
|
if GENERATE_DOCS
|
||||||
|
|
||||||
b10-auth.8: b10-auth.xml
|
b10-auth.8: b10-auth.xml
|
||||||
@XSLTPROC@ --novalid --xinclude --nonet -o $@ http://docbook.sourceforge.net/release/xsl/current/manpages/docbook.xsl $(srcdir)/b10-auth.xml
|
@XSLTPROC@ --novalid --xinclude --nonet -o $@ http://docbook.sourceforge.net/release/xsl/current/manpages/docbook.xsl $(srcdir)/b10-auth.xml
|
||||||
@ -31,8 +31,8 @@ b10-auth.8: b10-auth.xml
|
|||||||
else
|
else
|
||||||
|
|
||||||
$(man_MANS):
|
$(man_MANS):
|
||||||
@echo Man generation disabled. Creating dummy $@. Configure with --enable-man to enable it.
|
@echo Man generation disabled. Creating dummy $@. Configure with --enable-generate-docs to enable it.
|
||||||
@echo Man generation disabled. Remove this file, configure with --enable-man, and rebuild BIND 10 > $@
|
@echo Man generation disabled. Remove this file, configure with --enable-generate-docs, and rebuild BIND 10 > $@
|
||||||
|
|
||||||
endif
|
endif
|
||||||
|
|
||||||
|
@ -20,7 +20,7 @@ man_MANS = bind10.8
|
|||||||
CLEANFILES += $(man_MANS)
|
CLEANFILES += $(man_MANS)
|
||||||
EXTRA_DIST += $(man_MANS) bind10.xml bind10_messages.mes
|
EXTRA_DIST += $(man_MANS) bind10.xml bind10_messages.mes
|
||||||
|
|
||||||
if ENABLE_MAN
|
if GENERATE_DOCS
|
||||||
|
|
||||||
bind10.8: bind10.xml
|
bind10.8: bind10.xml
|
||||||
@XSLTPROC@ --novalid --xinclude --nonet -o $@ http://docbook.sourceforge.net/release/xsl/current/manpages/docbook.xsl $(srcdir)/bind10.xml
|
@XSLTPROC@ --novalid --xinclude --nonet -o $@ http://docbook.sourceforge.net/release/xsl/current/manpages/docbook.xsl $(srcdir)/bind10.xml
|
||||||
@ -31,11 +31,11 @@ bind10.8: bind10.xml
|
|||||||
else
|
else
|
||||||
|
|
||||||
$(man_MANS):
|
$(man_MANS):
|
||||||
@echo Man generation disabled. Creating dummy $@. Configure with --enable-man to enable it.
|
@echo Man generation disabled. Creating dummy $@. Configure with --enable-generate-docs to enable it.
|
||||||
@echo Man generation disabled. Remove this file, configure with --enable-man, and rebuild BIND 10 > $@
|
@echo Man generation disabled. Remove this file, configure with --enable-generate-docs, and rebuild BIND 10 > $@
|
||||||
|
|
||||||
#dist-local-check-mans-enabled:
|
#dist-local-check-mans-enabled:
|
||||||
# @echo "*** --enable-man must be used in order to make dist"
|
# @echo "*** --enable-generate-docs must be used in order to make dist"
|
||||||
# @false
|
# @false
|
||||||
|
|
||||||
endif
|
endif
|
||||||
|
@ -16,7 +16,7 @@ bindctldir = $(pkgdatadir)
|
|||||||
CLEANFILES = bindctl bindctl_main.pyc
|
CLEANFILES = bindctl bindctl_main.pyc
|
||||||
CLEANFILES += $(man_MANS)
|
CLEANFILES += $(man_MANS)
|
||||||
|
|
||||||
if ENABLE_MAN
|
if GENERATE_DOCS
|
||||||
|
|
||||||
bindctl.1: bindctl.xml
|
bindctl.1: bindctl.xml
|
||||||
@XSLTPROC@ --novalid --xinclude --nonet -o $@ http://docbook.sourceforge.net/release/xsl/current/manpages/docbook.xsl $(srcdir)/bindctl.xml
|
@XSLTPROC@ --novalid --xinclude --nonet -o $@ http://docbook.sourceforge.net/release/xsl/current/manpages/docbook.xsl $(srcdir)/bindctl.xml
|
||||||
@ -24,8 +24,8 @@ bindctl.1: bindctl.xml
|
|||||||
else
|
else
|
||||||
|
|
||||||
$(man_MANS):
|
$(man_MANS):
|
||||||
@echo Man generation disabled. Creating dummy $@. Configure with --enable-man to enable it.
|
@echo Man generation disabled. Creating dummy $@. Configure with --enable-generate-docs to enable it.
|
||||||
@echo Man generation disabled. Remove this file, configure with --enable-man, and rebuild BIND 10 > $@
|
@echo Man generation disabled. Remove this file, configure with --enable-generate-docs, and rebuild BIND 10 > $@
|
||||||
|
|
||||||
endif
|
endif
|
||||||
|
|
||||||
|
@ -13,7 +13,7 @@ man_MANS = b10-cfgmgr.8
|
|||||||
CLEANFILES += $(man_MANS)
|
CLEANFILES += $(man_MANS)
|
||||||
EXTRA_DIST = $(man_MANS) b10-cfgmgr.xml
|
EXTRA_DIST = $(man_MANS) b10-cfgmgr.xml
|
||||||
|
|
||||||
if ENABLE_MAN
|
if GENERATE_DOCS
|
||||||
|
|
||||||
b10-cfgmgr.8: b10-cfgmgr.xml
|
b10-cfgmgr.8: b10-cfgmgr.xml
|
||||||
@XSLTPROC@ --novalid --xinclude --nonet -o $@ http://docbook.sourceforge.net/release/xsl/current/manpages/docbook.xsl $(srcdir)/b10-cfgmgr.xml
|
@XSLTPROC@ --novalid --xinclude --nonet -o $@ http://docbook.sourceforge.net/release/xsl/current/manpages/docbook.xsl $(srcdir)/b10-cfgmgr.xml
|
||||||
@ -21,8 +21,8 @@ b10-cfgmgr.8: b10-cfgmgr.xml
|
|||||||
else
|
else
|
||||||
|
|
||||||
$(man_MANS):
|
$(man_MANS):
|
||||||
@echo Man generation disabled. Creating dummy $@. Configure with --enable-man to enable it.
|
@echo Man generation disabled. Creating dummy $@. Configure with --enable-generate-docs to enable it.
|
||||||
@echo Man generation disabled. Remove this file, configure with --enable-man, and rebuild BIND 10 > $@
|
@echo Man generation disabled. Remove this file, configure with --enable-generate-docs, and rebuild BIND 10 > $@
|
||||||
|
|
||||||
endif
|
endif
|
||||||
|
|
||||||
|
@ -29,7 +29,7 @@ man_MANS = b10-cmdctl.8
|
|||||||
CLEANFILES += $(man_MANS)
|
CLEANFILES += $(man_MANS)
|
||||||
EXTRA_DIST += $(man_MANS) b10-cmdctl.xml cmdctl_messages.mes
|
EXTRA_DIST += $(man_MANS) b10-cmdctl.xml cmdctl_messages.mes
|
||||||
|
|
||||||
if ENABLE_MAN
|
if GENERATE_DOCS
|
||||||
|
|
||||||
b10-cmdctl.8: b10-cmdctl.xml
|
b10-cmdctl.8: b10-cmdctl.xml
|
||||||
@XSLTPROC@ --novalid --xinclude --nonet -o $@ http://docbook.sourceforge.net/release/xsl/current/manpages/docbook.xsl $(srcdir)/b10-cmdctl.xml
|
@XSLTPROC@ --novalid --xinclude --nonet -o $@ http://docbook.sourceforge.net/release/xsl/current/manpages/docbook.xsl $(srcdir)/b10-cmdctl.xml
|
||||||
@ -37,8 +37,8 @@ b10-cmdctl.8: b10-cmdctl.xml
|
|||||||
else
|
else
|
||||||
|
|
||||||
$(man_MANS):
|
$(man_MANS):
|
||||||
@echo Man generation disabled. Creating dummy $@. Configure with --enable-man to enable it.
|
@echo Man generation disabled. Creating dummy $@. Configure with --enable-generate-docs to enable it.
|
||||||
@echo Man generation disabled. Remove this file, configure with --enable-man, and rebuild BIND 10 > $@
|
@echo Man generation disabled. Remove this file, configure with --enable-generate-docs, and rebuild BIND 10 > $@
|
||||||
|
|
||||||
endif
|
endif
|
||||||
|
|
||||||
|
@ -16,7 +16,7 @@ CLEANFILES += $(PYTHON_LOGMSGPKG_DIR)/work/dbutil_messages.pyc
|
|||||||
CLEANFILES += $(PYTHON_LOGMSGPKG_DIR)/work/dbutil_messages.pyo
|
CLEANFILES += $(PYTHON_LOGMSGPKG_DIR)/work/dbutil_messages.pyo
|
||||||
CLEANFILES += $(man_MANS)
|
CLEANFILES += $(man_MANS)
|
||||||
|
|
||||||
if ENABLE_MAN
|
if GENERATE_DOCS
|
||||||
|
|
||||||
b10-dbutil.8: b10-dbutil.xml
|
b10-dbutil.8: b10-dbutil.xml
|
||||||
@XSLTPROC@ --novalid --xinclude --nonet -o $@ http://docbook.sourceforge.net/release/xsl/current/manpages/docbook.xsl $(srcdir)/b10-dbutil.xml
|
@XSLTPROC@ --novalid --xinclude --nonet -o $@ http://docbook.sourceforge.net/release/xsl/current/manpages/docbook.xsl $(srcdir)/b10-dbutil.xml
|
||||||
@ -24,8 +24,8 @@ b10-dbutil.8: b10-dbutil.xml
|
|||||||
else
|
else
|
||||||
|
|
||||||
$(man_MANS):
|
$(man_MANS):
|
||||||
@echo Man generation disabled. Creating dummy $@. Configure with --enable-man to enable it.
|
@echo Man generation disabled. Creating dummy $@. Configure with --enable-generate-docs to enable it.
|
||||||
@echo Man generation disabled. Remove this file, configure with --enable-man, and rebuild BIND 10 > $@
|
@echo Man generation disabled. Remove this file, configure with --enable-generate-docs, and rebuild BIND 10 > $@
|
||||||
|
|
||||||
endif
|
endif
|
||||||
|
|
||||||
|
@ -20,7 +20,7 @@ man_MANS = b10-ddns.8
|
|||||||
CLEANFILES += $(man_MANS)
|
CLEANFILES += $(man_MANS)
|
||||||
EXTRA_DIST += $(man_MANS) b10-ddns.xml
|
EXTRA_DIST += $(man_MANS) b10-ddns.xml
|
||||||
|
|
||||||
if ENABLE_MAN
|
if GENERATE_DOCS
|
||||||
|
|
||||||
b10-ddns.8: b10-ddns.xml
|
b10-ddns.8: b10-ddns.xml
|
||||||
@XSLTPROC@ --novalid --xinclude --nonet -o $@ http://docbook.sourceforge.net/release/xsl/current/manpages/docbook.xsl $(srcdir)/b10-ddns.xml
|
@XSLTPROC@ --novalid --xinclude --nonet -o $@ http://docbook.sourceforge.net/release/xsl/current/manpages/docbook.xsl $(srcdir)/b10-ddns.xml
|
||||||
@ -28,8 +28,8 @@ b10-ddns.8: b10-ddns.xml
|
|||||||
else
|
else
|
||||||
|
|
||||||
$(man_MANS):
|
$(man_MANS):
|
||||||
@echo Man generation disabled. Creating dummy $@. Configure with --enable-man to enable it.
|
@echo Man generation disabled. Creating dummy $@. Configure with --enable-generate-docs to enable it.
|
||||||
@echo Man generation disabled. Remove this file, configure with --enable-man, and rebuild BIND 10 > $@
|
@echo Man generation disabled. Remove this file, configure with --enable-generate-docs, and rebuild BIND 10 > $@
|
||||||
|
|
||||||
endif
|
endif
|
||||||
|
|
||||||
|
@ -18,7 +18,7 @@ man_MANS = b10-dhcp4.8
|
|||||||
CLEANFILES += $(man_MANS)
|
CLEANFILES += $(man_MANS)
|
||||||
EXTRA_DIST = $(man_MANS) b10-dhcp4.xml dhcp4.spec
|
EXTRA_DIST = $(man_MANS) b10-dhcp4.xml dhcp4.spec
|
||||||
|
|
||||||
if ENABLE_MAN
|
if GENERATE_DOCS
|
||||||
b10-dhcp4.8: b10-dhcp4.xml
|
b10-dhcp4.8: b10-dhcp4.xml
|
||||||
@XSLTPROC@ --novalid --xinclude --nonet -o $@ \
|
@XSLTPROC@ --novalid --xinclude --nonet -o $@ \
|
||||||
http://docbook.sourceforge.net/release/xsl/current/manpages/docbook.xsl \
|
http://docbook.sourceforge.net/release/xsl/current/manpages/docbook.xsl \
|
||||||
@ -27,8 +27,8 @@ b10-dhcp4.8: b10-dhcp4.xml
|
|||||||
else
|
else
|
||||||
|
|
||||||
$(man_MANS):
|
$(man_MANS):
|
||||||
@echo Man generation disabled. Creating dummy $@. Configure with --enable-man to enable it.
|
@echo Man generation disabled. Creating dummy $@. Configure with --enable-generate-docs to enable it.
|
||||||
@echo Man generation disabled. Remove this file, configure with --enable-man, and rebuild BIND 10 > $@
|
@echo Man generation disabled. Remove this file, configure with --enable-generate-docs, and rebuild BIND 10 > $@
|
||||||
|
|
||||||
endif
|
endif
|
||||||
|
|
||||||
|
@ -19,7 +19,7 @@ man_MANS = b10-dhcp6.8
|
|||||||
CLEANFILES += $(man_MANS)
|
CLEANFILES += $(man_MANS)
|
||||||
EXTRA_DIST = $(man_MANS) b10-dhcp6.xml dhcp6.spec
|
EXTRA_DIST = $(man_MANS) b10-dhcp6.xml dhcp6.spec
|
||||||
|
|
||||||
if ENABLE_MAN
|
if GENERATE_DOCS
|
||||||
|
|
||||||
b10-dhcp6.8: b10-dhcp6.xml
|
b10-dhcp6.8: b10-dhcp6.xml
|
||||||
@XSLTPROC@ --novalid --xinclude --nonet -o $@ \
|
@XSLTPROC@ --novalid --xinclude --nonet -o $@ \
|
||||||
@ -29,8 +29,8 @@ b10-dhcp6.8: b10-dhcp6.xml
|
|||||||
else
|
else
|
||||||
|
|
||||||
$(man_MANS):
|
$(man_MANS):
|
||||||
@echo Man generation disabled. Creating dummy $@. Configure with --enable-man to enable it.
|
@echo Man generation disabled. Creating dummy $@. Configure with --enable-generate-docs to enable it.
|
||||||
@echo Man generation disabled. Remove this file, configure with --enable-man, and rebuild BIND 10 > $@
|
@echo Man generation disabled. Remove this file, configure with --enable-generate-docs, and rebuild BIND 10 > $@
|
||||||
|
|
||||||
endif
|
endif
|
||||||
|
|
||||||
|
@ -21,7 +21,7 @@ CLEANFILES += $(man_MANS)
|
|||||||
EXTRA_DIST = $(man_MANS) b10-host.xml
|
EXTRA_DIST = $(man_MANS) b10-host.xml
|
||||||
|
|
||||||
.PHONY: man
|
.PHONY: man
|
||||||
if ENABLE_MAN
|
if GENERATE_DOCS
|
||||||
|
|
||||||
man: b10-host.1
|
man: b10-host.1
|
||||||
|
|
||||||
@ -31,7 +31,7 @@ b10-host.1: b10-host.xml
|
|||||||
else
|
else
|
||||||
|
|
||||||
$(man_MANS):
|
$(man_MANS):
|
||||||
@echo Man generation disabled. Creating dummy $@. Configure with --enable-man to enable it.
|
@echo Man generation disabled. Creating dummy $@. Configure with --enable-generate-docs to enable it.
|
||||||
@echo Man generation disabled. Remove this file, configure with --enable-man, and rebuild BIND 10 > $@
|
@echo Man generation disabled. Remove this file, configure with --enable-generate-docs, and rebuild BIND 10 > $@
|
||||||
|
|
||||||
endif
|
endif
|
||||||
|
@ -8,7 +8,7 @@ man_MANS = b10-loadzone.8
|
|||||||
CLEANFILES += $(man_MANS)
|
CLEANFILES += $(man_MANS)
|
||||||
EXTRA_DIST = $(man_MANS) b10-loadzone.xml
|
EXTRA_DIST = $(man_MANS) b10-loadzone.xml
|
||||||
|
|
||||||
if ENABLE_MAN
|
if GENERATE_DOCS
|
||||||
|
|
||||||
b10-loadzone.8: b10-loadzone.xml
|
b10-loadzone.8: b10-loadzone.xml
|
||||||
@XSLTPROC@ --novalid --xinclude --nonet -o $@ http://docbook.sourceforge.net/release/xsl/current/manpages/docbook.xsl $(srcdir)/b10-loadzone.xml
|
@XSLTPROC@ --novalid --xinclude --nonet -o $@ http://docbook.sourceforge.net/release/xsl/current/manpages/docbook.xsl $(srcdir)/b10-loadzone.xml
|
||||||
@ -16,8 +16,8 @@ b10-loadzone.8: b10-loadzone.xml
|
|||||||
else
|
else
|
||||||
|
|
||||||
$(man_MANS):
|
$(man_MANS):
|
||||||
@echo Man generation disabled. Creating dummy $@. Configure with --enable-man to enable it.
|
@echo Man generation disabled. Creating dummy $@. Configure with --enable-generate-docs to enable it.
|
||||||
@echo Man generation disabled. Remove this file, configure with --enable-man, and rebuild BIND 10 > $@
|
@echo Man generation disabled. Remove this file, configure with --enable-generate-docs, and rebuild BIND 10 > $@
|
||||||
|
|
||||||
endif
|
endif
|
||||||
|
|
||||||
|
@ -10,7 +10,7 @@ man_MANS = b10-msgq.8
|
|||||||
CLEANFILES += $(man_MANS)
|
CLEANFILES += $(man_MANS)
|
||||||
EXTRA_DIST = $(man_MANS) msgq.xml
|
EXTRA_DIST = $(man_MANS) msgq.xml
|
||||||
|
|
||||||
if ENABLE_MAN
|
if GENERATE_DOCS
|
||||||
|
|
||||||
b10-msgq.8: msgq.xml
|
b10-msgq.8: msgq.xml
|
||||||
@XSLTPROC@ --novalid --xinclude --nonet -o $@ http://docbook.sourceforge.net/release/xsl/current/manpages/docbook.xsl $(srcdir)/msgq.xml
|
@XSLTPROC@ --novalid --xinclude --nonet -o $@ http://docbook.sourceforge.net/release/xsl/current/manpages/docbook.xsl $(srcdir)/msgq.xml
|
||||||
@ -18,8 +18,8 @@ b10-msgq.8: msgq.xml
|
|||||||
else
|
else
|
||||||
|
|
||||||
$(man_MANS):
|
$(man_MANS):
|
||||||
@echo Man generation disabled. Creating dummy $@. Configure with --enable-man to enable it.
|
@echo Man generation disabled. Creating dummy $@. Configure with --enable-generate-docs to enable it.
|
||||||
@echo Man generation disabled. Remove this file, configure with --enable-man, and rebuild BIND 10 > $@
|
@echo Man generation disabled. Remove this file, configure with --enable-generate-docs, and rebuild BIND 10 > $@
|
||||||
|
|
||||||
endif
|
endif
|
||||||
|
|
||||||
|
@ -26,7 +26,7 @@ man_MANS = b10-resolver.8
|
|||||||
CLEANFILES += $(man_MANS)
|
CLEANFILES += $(man_MANS)
|
||||||
EXTRA_DIST = $(man_MANS) b10-resolver.xml resolver_messages.mes
|
EXTRA_DIST = $(man_MANS) b10-resolver.xml resolver_messages.mes
|
||||||
|
|
||||||
if ENABLE_MAN
|
if GENERATE_DOCS
|
||||||
|
|
||||||
b10-resolver.8: b10-resolver.xml
|
b10-resolver.8: b10-resolver.xml
|
||||||
@XSLTPROC@ --novalid --xinclude --nonet -o $@ http://docbook.sourceforge.net/release/xsl/current/manpages/docbook.xsl $(srcdir)/b10-resolver.xml
|
@XSLTPROC@ --novalid --xinclude --nonet -o $@ http://docbook.sourceforge.net/release/xsl/current/manpages/docbook.xsl $(srcdir)/b10-resolver.xml
|
||||||
@ -34,8 +34,8 @@ b10-resolver.8: b10-resolver.xml
|
|||||||
else
|
else
|
||||||
|
|
||||||
$(man_MANS):
|
$(man_MANS):
|
||||||
@echo Man generation disabled. Creating dummy $@. Configure with --enable-man to enable it.
|
@echo Man generation disabled. Creating dummy $@. Configure with --enable-generate-docs to enable it.
|
||||||
@echo Man generation disabled. Remove this file, configure with --enable-man, and rebuild BIND 10 > $@
|
@echo Man generation disabled. Remove this file, configure with --enable-generate-docs, and rebuild BIND 10 > $@
|
||||||
|
|
||||||
endif
|
endif
|
||||||
|
|
||||||
|
@ -14,7 +14,7 @@ man_MANS = \
|
|||||||
$(MAN1_FILES:.xml=.1)
|
$(MAN1_FILES:.xml=.1)
|
||||||
CLEANFILES += $(man_MANS)
|
CLEANFILES += $(man_MANS)
|
||||||
|
|
||||||
if ENABLE_MAN
|
if GENERATE_DOCS
|
||||||
|
|
||||||
.xml.1:
|
.xml.1:
|
||||||
@XSLTPROC@ --novalid --xinclude --nonet -o $@ http://docbook.sourceforge.net/release/xsl/current/manpages/docbook.xsl $<
|
@XSLTPROC@ --novalid --xinclude --nonet -o $@ http://docbook.sourceforge.net/release/xsl/current/manpages/docbook.xsl $<
|
||||||
@ -22,8 +22,8 @@ if ENABLE_MAN
|
|||||||
else
|
else
|
||||||
|
|
||||||
$(man_MANS):
|
$(man_MANS):
|
||||||
@echo Man generation disabled. Creating dummy $@. Configure with --enable-man to enable it.
|
@echo Man generation disabled. Creating dummy $@. Configure with --enable-generate-docs to enable it.
|
||||||
@echo Man generation disabled. Remove this file, configure with --enable-man, and rebuild BIND 10 > $@
|
@echo Man generation disabled. Remove this file, configure with --enable-generate-docs, and rebuild BIND 10 > $@
|
||||||
|
|
||||||
endif
|
endif
|
||||||
|
|
||||||
|
@ -16,7 +16,7 @@ man_MANS = b10-sockcreator.8
|
|||||||
CLEANFILES += $(man_MANS)
|
CLEANFILES += $(man_MANS)
|
||||||
EXTRA_DIST = $(man_MANS) b10-sockcreator.xml
|
EXTRA_DIST = $(man_MANS) b10-sockcreator.xml
|
||||||
|
|
||||||
if ENABLE_MAN
|
if GENERATE_DOCS
|
||||||
|
|
||||||
b10-sockcreator.8: b10-sockcreator.xml
|
b10-sockcreator.8: b10-sockcreator.xml
|
||||||
@XSLTPROC@ --novalid --xinclude --nonet -o $@ http://docbook.sourceforge.net/release/xsl/current/manpages/docbook.xsl $(srcdir)/b10-sockcreator.xml
|
@XSLTPROC@ --novalid --xinclude --nonet -o $@ http://docbook.sourceforge.net/release/xsl/current/manpages/docbook.xsl $(srcdir)/b10-sockcreator.xml
|
||||||
@ -24,8 +24,8 @@ b10-sockcreator.8: b10-sockcreator.xml
|
|||||||
else
|
else
|
||||||
|
|
||||||
$(man_MANS):
|
$(man_MANS):
|
||||||
@echo Man generation disabled. Creating dummy $@. Configure with --enable-man to enable it.
|
@echo Man generation disabled. Creating dummy $@. Configure with --enable-generate-docs to enable it.
|
||||||
@echo Man generation disabled. Remove this file, configure with --enable-man, and rebuild BIND 10 > $@
|
@echo Man generation disabled. Remove this file, configure with --enable-generate-docs, and rebuild BIND 10 > $@
|
||||||
|
|
||||||
endif
|
endif
|
||||||
|
|
||||||
|
@ -26,7 +26,7 @@ EXTRA_DIST += stats.spec stats-httpd.spec
|
|||||||
EXTRA_DIST += stats-httpd-xml.tpl stats-httpd-xsd.tpl stats-httpd-xsl.tpl
|
EXTRA_DIST += stats-httpd-xml.tpl stats-httpd-xsd.tpl stats-httpd-xsl.tpl
|
||||||
EXTRA_DIST += stats_messages.mes stats_httpd_messages.mes
|
EXTRA_DIST += stats_messages.mes stats_httpd_messages.mes
|
||||||
|
|
||||||
if ENABLE_MAN
|
if GENERATE_DOCS
|
||||||
|
|
||||||
b10-stats.8: b10-stats.xml
|
b10-stats.8: b10-stats.xml
|
||||||
@XSLTPROC@ --novalid --xinclude --nonet -o $@ http://docbook.sourceforge.net/release/xsl/current/manpages/docbook.xsl $(srcdir)/b10-stats.xml
|
@XSLTPROC@ --novalid --xinclude --nonet -o $@ http://docbook.sourceforge.net/release/xsl/current/manpages/docbook.xsl $(srcdir)/b10-stats.xml
|
||||||
@ -37,8 +37,8 @@ b10-stats-httpd.8: b10-stats-httpd.xml
|
|||||||
else
|
else
|
||||||
|
|
||||||
$(man_MANS):
|
$(man_MANS):
|
||||||
@echo Man generation disabled. Creating dummy $@. Configure with --enable-man to enable it.
|
@echo Man generation disabled. Creating dummy $@. Configure with --enable-generate-docs to enable it.
|
||||||
@echo Man generation disabled. Remove this file, configure with --enable-man, and rebuild BIND 10 > $@
|
@echo Man generation disabled. Remove this file, configure with --enable-generate-docs, and rebuild BIND 10 > $@
|
||||||
|
|
||||||
endif
|
endif
|
||||||
|
|
||||||
|
@ -8,7 +8,7 @@ man_MANS = b10-cmdctl-usermgr.8
|
|||||||
CLEANFILES += $(man_MANS)
|
CLEANFILES += $(man_MANS)
|
||||||
EXTRA_DIST = $(man_MANS) b10-cmdctl-usermgr.xml
|
EXTRA_DIST = $(man_MANS) b10-cmdctl-usermgr.xml
|
||||||
|
|
||||||
if ENABLE_MAN
|
if GENERATE_DOCS
|
||||||
|
|
||||||
b10-cmdctl-usermgr.8: b10-cmdctl-usermgr.xml
|
b10-cmdctl-usermgr.8: b10-cmdctl-usermgr.xml
|
||||||
@XSLTPROC@ --novalid --xinclude --nonet -o $@ http://docbook.sourceforge.net/release/xsl/current/manpages/docbook.xsl $(srcdir)/b10-cmdctl-usermgr.xml
|
@XSLTPROC@ --novalid --xinclude --nonet -o $@ http://docbook.sourceforge.net/release/xsl/current/manpages/docbook.xsl $(srcdir)/b10-cmdctl-usermgr.xml
|
||||||
@ -16,8 +16,8 @@ b10-cmdctl-usermgr.8: b10-cmdctl-usermgr.xml
|
|||||||
else
|
else
|
||||||
|
|
||||||
$(man_MANS):
|
$(man_MANS):
|
||||||
@echo Man generation disabled. Creating dummy $@. Configure with --enable-man to enable it.
|
@echo Man generation disabled. Creating dummy $@. Configure with --enable-generate-docs to enable it.
|
||||||
@echo Man generation disabled. Remove this file, configure with --enable-man, and rebuild BIND 10 > $@
|
@echo Man generation disabled. Remove this file, configure with --enable-generate-docs, and rebuild BIND 10 > $@
|
||||||
|
|
||||||
endif
|
endif
|
||||||
|
|
||||||
|
@ -19,7 +19,7 @@ CLEANFILES += $(man_MANS)
|
|||||||
EXTRA_DIST = $(man_MANS) b10-xfrin.xml
|
EXTRA_DIST = $(man_MANS) b10-xfrin.xml
|
||||||
EXTRA_DIST += xfrin.spec xfrin_messages.mes
|
EXTRA_DIST += xfrin.spec xfrin_messages.mes
|
||||||
|
|
||||||
if ENABLE_MAN
|
if GENERATE_DOCS
|
||||||
|
|
||||||
b10-xfrin.8: b10-xfrin.xml
|
b10-xfrin.8: b10-xfrin.xml
|
||||||
@XSLTPROC@ --novalid --xinclude --nonet -o $@ http://docbook.sourceforge.net/release/xsl/current/manpages/docbook.xsl $(srcdir)/b10-xfrin.xml
|
@XSLTPROC@ --novalid --xinclude --nonet -o $@ http://docbook.sourceforge.net/release/xsl/current/manpages/docbook.xsl $(srcdir)/b10-xfrin.xml
|
||||||
@ -27,8 +27,8 @@ b10-xfrin.8: b10-xfrin.xml
|
|||||||
else
|
else
|
||||||
|
|
||||||
$(man_MANS):
|
$(man_MANS):
|
||||||
@echo Man generation disabled. Creating dummy $@. Configure with --enable-man to enable it.
|
@echo Man generation disabled. Creating dummy $@. Configure with --enable-generate-docs to enable it.
|
||||||
@echo Man generation disabled. Remove this file, configure with --enable-man, and rebuild BIND 10 > $@
|
@echo Man generation disabled. Remove this file, configure with --enable-generate-docs, and rebuild BIND 10 > $@
|
||||||
|
|
||||||
endif
|
endif
|
||||||
|
|
||||||
|
@ -18,7 +18,7 @@ man_MANS = b10-xfrout.8
|
|||||||
CLEANFILES += $(man_MANS)
|
CLEANFILES += $(man_MANS)
|
||||||
EXTRA_DIST = $(man_MANS) b10-xfrout.xml xfrout_messages.mes
|
EXTRA_DIST = $(man_MANS) b10-xfrout.xml xfrout_messages.mes
|
||||||
|
|
||||||
if ENABLE_MAN
|
if GENERATE_DOCS
|
||||||
|
|
||||||
b10-xfrout.8: b10-xfrout.xml
|
b10-xfrout.8: b10-xfrout.xml
|
||||||
@XSLTPROC@ --novalid --xinclude --nonet -o $@ http://docbook.sourceforge.net/release/xsl/current/manpages/docbook.xsl $(srcdir)/b10-xfrout.xml
|
@XSLTPROC@ --novalid --xinclude --nonet -o $@ http://docbook.sourceforge.net/release/xsl/current/manpages/docbook.xsl $(srcdir)/b10-xfrout.xml
|
||||||
@ -26,8 +26,8 @@ b10-xfrout.8: b10-xfrout.xml
|
|||||||
else
|
else
|
||||||
|
|
||||||
$(man_MANS):
|
$(man_MANS):
|
||||||
@echo Man generation disabled. Creating dummy $@. Configure with --enable-man to enable it.
|
@echo Man generation disabled. Creating dummy $@. Configure with --enable-generate-docs to enable it.
|
||||||
@echo Man generation disabled. Remove this file, configure with --enable-man, and rebuild BIND 10 > $@
|
@echo Man generation disabled. Remove this file, configure with --enable-generate-docs, and rebuild BIND 10 > $@
|
||||||
|
|
||||||
endif
|
endif
|
||||||
|
|
||||||
|
@ -18,7 +18,7 @@ man_MANS = b10-zonemgr.8
|
|||||||
CLEANFILES += $(man_MANS)
|
CLEANFILES += $(man_MANS)
|
||||||
EXTRA_DIST = $(man_MANS) b10-zonemgr.xml zonemgr_messages.mes
|
EXTRA_DIST = $(man_MANS) b10-zonemgr.xml zonemgr_messages.mes
|
||||||
|
|
||||||
if ENABLE_MAN
|
if GENERATE_DOCS
|
||||||
|
|
||||||
b10-zonemgr.8: b10-zonemgr.xml
|
b10-zonemgr.8: b10-zonemgr.xml
|
||||||
@XSLTPROC@ --novalid --xinclude --nonet -o $@ http://docbook.sourceforge.net/release/xsl/current/manpages/docbook.xsl $(srcdir)/b10-zonemgr.xml
|
@XSLTPROC@ --novalid --xinclude --nonet -o $@ http://docbook.sourceforge.net/release/xsl/current/manpages/docbook.xsl $(srcdir)/b10-zonemgr.xml
|
||||||
@ -26,8 +26,8 @@ b10-zonemgr.8: b10-zonemgr.xml
|
|||||||
else
|
else
|
||||||
|
|
||||||
$(man_MANS):
|
$(man_MANS):
|
||||||
@echo Man generation disabled. Creating dummy $@. Configure with --enable-man to enable it.
|
@echo Man generation disabled. Creating dummy $@. Configure with --enable-generate-docs to enable it.
|
||||||
@echo Man generation disabled. Remove this file, configure with --enable-man, and rebuild BIND 10 > $@
|
@echo Man generation disabled. Remove this file, configure with --enable-generate-docs, and rebuild BIND 10 > $@
|
||||||
|
|
||||||
endif
|
endif
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user