blob: 4bee9afd040f5ebcaa02722f7a0dda750f2c8bd1 (
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
|
NULL =
SPEC_XML_FILES = \
mate-screensaver.xml \
dbus-interface.xml \
$(NULL)
if DOCBOOK_DOCS_ENABLED
htmldocdir = $(DOCDIR)
htmldoc_DATA = mate-screensaver.html
mate-screensaver.html : dbus-interface.xml
$(XMLTO) html-nochunks -m config.xsl mate-screensaver.xml
endif # DOCBOOK_DOCS_ENABLED
EXTRA_DIST = \
mate-screensaver.xml.in \
config.xsl \
docbook.css \
$(SPEC_XML_FILES)
$(NULL)
clean-local:
rm -f *~
rm -f mate-screensaver.html
-include $(top_srcdir)/git.mk
|