From: Phil Sutter Date: Fri, 14 Sep 2018 09:00:23 +0000 (+0200) Subject: doc: Review man page building in Makefile.am X-Git-Tag: v0.9.1~265 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=3bacae9e4a1e34eb09503c5bb8c45b418b6c38b5;p=thirdparty%2Fnftables.git doc: Review man page building in Makefile.am Previously, changes to any of the included adoc snippets in nft.txt were not detected and hence the man page not updated (unless 'make clean' was called). It seems like the '.txt.8' target only considers foo.txt when trying to generate foo.8, so get rid of that and introduce a dedicated target for nft.8. While doing so, apply a few other minor changes: * Although nft.8 target has to list all included adoc snippets as a dependency, it is sufficient to call a2x with the main one (i.e., nft.txt) only. * Keep common a2x parameters in a variable. * Use ${A2X} everywhere and hide all calls behind ${AM_V_GEN}, not just the one for nft.8. Signed-off-by: Phil Sutter Signed-off-by: Pablo Neira Ayuso --- diff --git a/doc/Makefile.am b/doc/Makefile.am index e70dfc5e..503d6cd8 100644 --- a/doc/Makefile.am +++ b/doc/Makefile.am @@ -2,6 +2,8 @@ if BUILD_MAN man_MANS = nft.8 libnftables-json.5 libnftables.3 endif +A2X_OPTS_MANPAGE = --doctype manpage --format manpage -D ${builddir} + ASCIIDOC_MAIN = nft.txt ASCIIDOC_INCLUDES = \ data-types.txt \ @@ -11,14 +13,14 @@ ASCIIDOC_INCLUDES = \ statements.txt ASCIIDOCS = ${ASCIIDOC_MAIN} ${ASCIIDOC_INCLUDES} -.txt.8: ${ASCIIDOCS} - ${AM_V_GEN}${A2X} --doctype manpage --format manpage -D ${builddir} $< +nft.8: ${ASCIIDOCS} + ${AM_V_GEN}${A2X} ${A2X_OPTS_MANPAGE} nft.txt .adoc.3: - a2x --doctype manpage --format manpage -D ${builddir} $< + ${AM_V_GEN}${A2X} ${A2X_OPTS_MANPAGE} $< .adoc.5: - a2x --doctype manpage --format manpage -D ${builddir} $< + ${AM_V_GEN}${A2X} ${A2X_OPTS_MANPAGE} $< EXTRA_DIST = ${ASCIIDOCS} libnftables-json.adoc libnftables.adoc