mirror of
https://gitlab.freedesktop.org/dbus/dbus.git
synced 2026-01-17 12:50:25 +01:00
* bus/Makefile.am, bus/dbus-daemon-1.1.in: man page for the daemon; also documents daemon config file, so replaces doc/config-file.txt. Corrected some stuff from config-file.txt in the process of moving it.
29 lines
955 B
Makefile
29 lines
955 B
Makefile
EXTRA_DIST= \
|
|
dbus-specification.html \
|
|
dbus-specification.sgml \
|
|
dbus-test-plan.html \
|
|
dbus-test-plan.sgml \
|
|
dcop-howto.txt \
|
|
file-boilerplate.c
|
|
|
|
if DBUS_DOCS_ENABLED
|
|
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
|