From cb8262c65191932580fbc73b726125e2982a1f1f Mon Sep 17 00:00:00 2001 From: Matthias Clasen Date: Mon, 7 Mar 2016 17:28:36 -0500 Subject: Add a man page for bwrap This does use docbook stylesheets and xsltproc. If we want to avoid that build dependency, we can just generate it once and be done. --- Makefile-docs.am | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 Makefile-docs.am (limited to 'Makefile-docs.am') diff --git a/Makefile-docs.am b/Makefile-docs.am new file mode 100644 index 0000000..0582066 --- /dev/null +++ b/Makefile-docs.am @@ -0,0 +1,14 @@ +XSLTPROC = xsltproc + +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 + +.xml.1: + $(XSLTPROC) $(XSLTPROC_FLAGS) http://docbook.sourceforge.net/release/xsl/current/manpages/docbook.xsl $< + +man_MANS = bwrap.1 -- cgit v1.2.1