Home | History | Annotate | Download | only in doc
      1 EXTRA_DIST= 					\
      2 	busconfig.dtd				\
      3 	diagram.png				\
      4 	diagram.svg				\
      5 	introspect.dtd				\
      6 	dbus-faq.xml				\
      7 	dbus-specification.xml			\
      8 	dbus-test-plan.xml			\
      9 	dbus-tutorial.xml			\
     10 	dcop-howto.txt				\
     11 	file-boilerplate.c			\
     12 	introspect.xsl				\
     13 	system-activation.txt
     14 
     15 HTML_FILES=					\
     16 	dbus-faq.html				\
     17 	dbus-specification.html			\
     18 	dbus-test-plan.html			\
     19 	dbus-tutorial.html
     20 
     21 if DBUS_XML_DOCS_ENABLED
     22 all-local: $(HTML_FILES)
     23 
     24 EXTRA_DIST += $(HTML_FILES)
     25 
     26 dbus-specification.html: dbus-specification.xml
     27 	$(XMLTO) html-nochunks $<
     28 
     29 dbus-test-plan.html: dbus-test-plan.xml
     30 	$(XMLTO) html-nochunks $<
     31 
     32 dbus-tutorial.html: dbus-tutorial.xml
     33 	$(XMLTO) html-nochunks $<
     34 
     35 dbus-faq.html: dbus-faq.xml
     36 	$(XMLTO) html-nochunks $<
     37 
     38 endif
     39 
     40 maintainer-clean-local:
     41 	rm -f $(HTML_FILES)
     42