19 lines
471 B
Plaintext
19 lines
471 B
Plaintext
|
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 $<
|
||
|
|
||
|
if ENABLE_MAN
|
||
|
man_MANS = bwrap.1
|
||
|
CLEANFILES += $(man_MANS)
|
||
|
endif
|
||
|
EXTRA_DIST += bwrap.xml
|