summaryrefslogtreecommitdiff
path: root/man/make.sh
blob: 4e2299e33f9f4db23d9f35ca6dcd380fbd3d9ee9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#/bin/sh

XSLTPROC="/usr/bin/xsltproc"

XSLTPROC_FLAGS="--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"

xslt_proc() {
	$XSLTPROC -o $1.$2 $XSLTPROC_FLAGS http://docbook.sourceforge.net/release/xsl/current/manpages/docbook.xsl $1.xml
}

xslt_proc udev 7
xslt_proc udev.conf 5
xslt_proc udevd 8
xslt_proc udevadm 8