blob: aa1f8ecf901eb6c54ce6fb2472795187259fc74e (
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
|
EXTRA_DIST = \
mate-power-manager.sgml \
mate-power-statistics.sgml \
mate-power-preferences.sgml
if HAVE_DOCBOOK2MAN
man_MANS = \
mate-power-manager.1 \
mate-power-statistics.1 \
mate-power-preferences.1
endif
if HAVE_DOCBOOK2MAN
mate-power-manager.1: mate-power-manager.sgml
docbook2man $? &> /dev/null
mate-power-preferences.1: mate-power-preferences.sgml
docbook2man $? &> /dev/null
mate-power-statistics.1: mate-power-statistics.sgml
docbook2man $? &> /dev/null
endif
clean-local :
rm -f *~
rm -f *.1
rm -f manpage.*
|