mirror of
https://gitlab.freedesktop.org/dbus/dbus.git
synced 2026-02-09 03:50:33 +01:00
* configure.in: split checks for Doxygen from XML docs, check for xmlto * doc/Makefile.am: XML-ify all the docs, and add a blank dbus-tutorial.xml
30 lines
619 B
Makefile
30 lines
619 B
Makefile
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)
|