mirror of
https://gitlab.freedesktop.org/dbus/dbus.git
synced 2026-01-16 19:20:29 +01:00
* NEWS: 0.21 updates * configure.in: 0.21 * doc/Makefile.am: add all XMLTO usage to DBUS_XML_DOCS_ENABLED * python/Makefile.am: change to avoid dist of dbus_bindings.c so you don't need pyrex to make dist * qt/Makefile.am (libdbus_qt_1_la_SOURCES): add integrator.h to sources; run moc
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)
|
|
|
|
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 $<
|
|
endif
|
|
|
|
maintainer-clean-local:
|
|
rm -f $(HTML_FILES)
|