summaryrefslogtreecommitdiffstats
path: root/man/Makefile.am
blob: 79f0c132bf8e7340d3d7621b4c6b57c80b04db16 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
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:
	$(AM_V_GEN) $(XSLTPROC) $(XSLTPROC_FLAGS) http://docbook.sourceforge.net/release/xsl/current/manpages/docbook.xsl $<

.xml.5:
	$(AM_V_GEN) $(XSLTPROC) $(XSLTPROC_FLAGS) http://docbook.sourceforge.net/release/xsl/current/manpages/docbook.xsl $<

man_MANS = \
	xdg-user-dir.1 \
	xdg-user-dirs-update.1 \
	user-dirs.conf.5 \
	user-dirs.defaults.5 \
	user-dirs.dirs.5

xml_files = $(patsubst %.5,%.xml,$(patsubst %.1,%.xml,$(man_MANS)))

EXTRA_DIST = $(xml_files)

DISTCLEANFILES = $(man_MANS)