mirror of
https://gitlab.freedesktop.org/dbus/dbus.git
synced 2025-12-22 11:20:27 +01:00
* doc/Makefile.am (EXTRA_DIST): add DTDs to makefile * doc/introspect.dtd: add introspect.dtd from David A. Wheeler (with some minor changes) * doc/dbus-specification.xml: add deprecated attribute to introspection format
37 lines
707 B
Makefile
37 lines
707 B
Makefile
EXTRA_DIST= \
|
|
busconfig.dtd \
|
|
introspect.dtd \
|
|
dbus-faq.xml \
|
|
dbus-specification.xml \
|
|
dbus-test-plan.xml \
|
|
dbus-tutorial.xml \
|
|
dcop-howto.txt \
|
|
file-boilerplate.c
|
|
|
|
HTML_FILES= \
|
|
dbus-faq.html \
|
|
dbus-specification.html \
|
|
dbus-test-plan.html \
|
|
dbus-tutorial.html
|
|
|
|
if DBUS_XML_DOCS_ENABLED
|
|
all-local: $(HTML_FILES)
|
|
|
|
EXTRA_DIST += $(HTML_FILES)
|
|
|
|
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 $<
|
|
|
|
dbus-faq.html: dbus-faq.xml
|
|
$(XMLTO) html-nochunks $<
|
|
|
|
endif
|
|
|
|
maintainer-clean-local:
|
|
rm -f $(HTML_FILES)
|