summaryrefslogtreecommitdiff
path: root/man
diff options
context:
space:
mode:
authorAnthony G. Basile <blueness@gentoo.org>2012-11-18 17:17:35 -0500
committerAnthony G. Basile <blueness@gentoo.org>2012-11-18 17:17:35 -0500
commitd68f6556449d3533bf368baa8631fbbcef125133 (patch)
treef7a3758f83fa68ee3ed2dbc6768a5b89d5714c8f /man
parentd4efe353dae3cb80f2ffdd736d68d90d3a4c7ce6 (diff)
Fix manpage build
Signed-off-by: Anthony G. Basile <blueness@gentoo.org>
Diffstat (limited to 'man')
-rw-r--r--man/Makefile.am30
1 files changed, 30 insertions, 0 deletions
diff --git a/man/Makefile.am b/man/Makefile.am
index fd9bacf4cf..a328876f25 100644
--- a/man/Makefile.am
+++ b/man/Makefile.am
@@ -3,3 +3,33 @@ ACLOCAL_AMFLAGS = -I m4 ${ACLOCAL_FLAGS}
MANPAGES = \
udev.7 \
udevadm.8
+
+XML_FILES = \
+ ${patsubst %.7,%.xml,${patsubst %.8,%.xml,$(MANPAGES)}}
+
+XSLTPROC_FLAGS = \
+ --nonet \
+ --stringparam man.output.quietly 1 \
+ --stringparam funcsynopsis.style ansi \
+ --stringparam man.th.extra1.suppress 1 \
+ --stringparam man.authors.section.enabled 0 \
+ --stringparam man.copyright.section.enabled 0
+
+man_MANS = \
+ $(MANPAGES)
+
+noinst_DATA = \
+ $(XML_FILES)
+
+CLEANFILES = \
+ $(MANPAGES)
+
+XSLTPROC_PROCESS_MAN = \
+ $(AM_V_GEN)$(MKDIR_P) $(dir $@) && \
+ $(XSLTPROC) -o $@ $(XSLTPROC_FLAGS) http://docbook.sourceforge.net/release/xsl/current/manpages/docbook.xsl $<
+
+%.7: %.xml
+ $(XSLTPROC_PROCESS_MAN)
+
+%.8: %.xml
+ $(XSLTPROC_PROCESS_MAN)