mirror of
https://gitlab.freedesktop.org/dbus/dbus.git
synced 2026-02-15 13:50:36 +01:00
* qt/Makefile.am (dbusinclude_HEADERS): install dbus-qt.h, from Colin Walters * configure.in: fixes to Qt detection from Colin Walters * doc/Makefile.am: Only remove generated docbook dirs if they exist, from Colin Walters * dbus/dbus-bus.c: change how we set well-known connections to NULL, so that it works if a single connection is stored in two well-known array slots. * test/Makefile.am: remove a lot of stuff that isn't immediately useful, it's in CVS history if we want it. * test/test-service.c: use dbus-mainloop instead of that watch.[hc] crack
30 lines
969 B
Makefile
30 lines
969 B
Makefile
EXTRA_DIST= \
|
|
config-file.txt \
|
|
dbus-specification.html \
|
|
dbus-specification.sgml \
|
|
dbus-test-plan.html \
|
|
dbus-test-plan.sgml \
|
|
dcop-howto.txt \
|
|
file-boilerplate.c
|
|
|
|
if MAINTAINER_MODE
|
|
all-local: dbus-specification.html dbus-test-plan.html
|
|
endif
|
|
|
|
dbus-specification.html: dbus-specification.sgml
|
|
db2html -o . --nochunks dbus-specification.sgml && \
|
|
rm -r dbus-specification/stylesheet-images && \
|
|
(if test -d dbus-specification ; then rmdir dbus-specification ; fi)
|
|
|
|
dbus-test-plan.html: dbus-test-plan.sgml
|
|
db2html -o . --nochunks dbus-test-plan.sgml && \
|
|
rm -r dbus-test-plan/stylesheet-images && \
|
|
(if test -d dbus-test-plan ; then rmdir dbus-test-plan ; fi)
|
|
|
|
maintainer-clean-local:
|
|
rm -f dbus-test-plan.html
|
|
rm -rf dbus-test-plan/stylesheet-images
|
|
test -d dbus-test-plan && rmdir dbus-test-plan
|
|
rm -f dbus-specification.html
|
|
rm -rf dbus-specification/stylesheet-images
|
|
test -d dbus-specification && rmdir dbus-specification
|