summaryrefslogtreecommitdiffstats
path: root/doc/Makefile.am
blob: 7bd392a6264719b224b2e095366c1f557c5dc205 (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
EXTRA_DIST= 					\
	dbus-specification.html			\
	dbus-specification.xml			\
	dbus-test-plan.html			\
	dbus-test-plan.xml			\
	dbus-tutorial.html			\
	dbus-tutorial.xml			\
	dcop-howto.txt				\
	file-boilerplate.c

HTML_FILES=					\
	dbus-specification.html			\
	dbus-test-plan.html			\
	dbus-tutorial.html

if DBUS_XML_DOCS_ENABLED
all-local: $(HTML_FILES)
endif

dbus-specification.html: dbus-specification.xml
	$(XMLTO) html-nochunks $<

dbus-test-plan.html: dbus-test-plan.xml
	$(XMLTO) html-nochunks $<

dbus-tutorial.html: dbus-tutorial.xml
	$(XMLTO) html-nochunks $<

maintainer-clean-local:
	rm -f $(HTML_FILES)