blob: 0b2dc44eeb1b101d901dfc2f2275209c93f562cd (
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
27
28
29
30
31
32
|
NULL =
if MAN_PAGES_ENABLED
man_MANS = \
polkit.8 \
polkitd.8 \
pkexec.1 \
pkcheck.1 \
pkaction.1 \
pkttyagent.1 \
$(NULL)
%.8 %.1 : %.xml
$(XSLTPROC) -nonet --stringparam man.base.url.for.relative.links $(datadir)/gtk-doc/html/polkit-1/ --xinclude http://docbook.sourceforge.net/release/xsl/current/manpages/docbook.xsl $<
endif # MAN_PAGES_ENABLED
EXTRA_DIST = \
polkit.xml \
polkitd.xml \
pkexec.xml \
pkcheck.xml \
pkaction.xml \
pkttyagent.xml \
$(NULL)
clean-local:
rm -f *~ *.1 *.8
-include $(top_srcdir)/git.mk
|