aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--doc/misc/ChangeLog4
-rw-r--r--doc/misc/Makefile.in14
2 files changed, 18 insertions, 0 deletions
diff --git a/doc/misc/ChangeLog b/doc/misc/ChangeLog
index 92a1a718b2d..79cea57b143 100644
--- a/doc/misc/ChangeLog
+++ b/doc/misc/ChangeLog
@@ -1,5 +1,9 @@
12007-12-02 Michael Albinus <michael.albinus@gmx.de> 12007-12-02 Michael Albinus <michael.albinus@gmx.de>
2 2
3 * Makefile.in (INFO_TARGETS): Add dbus.
4 (DVI_TARGETS): Add dbus.dvi.
5 (dbus, dbus.dvi): New targets.
6
3 * dbus.texi: New file. 7 * dbus.texi: New file.
4 8
52007-11-24 Romain Francoise <romain@orebokech.com> 92007-11-24 Romain Francoise <romain@orebokech.com>
diff --git a/doc/misc/Makefile.in b/doc/misc/Makefile.in
index 2e3bfad0823..9ab382386c8 100644
--- a/doc/misc/Makefile.in
+++ b/doc/misc/Makefile.in
@@ -79,6 +79,10 @@ INFO_TARGETS = \
79 $(infodir)/widget \ 79 $(infodir)/widget \
80 $(infodir)/woman 80 $(infodir)/woman
81 81
82ifeq (@DBUS_INFO@, dbus)
83 INFO_TARGETS += $(infodir)/dbus
84endif
85
82DVI_TARGETS = \ 86DVI_TARGETS = \
83 ada-mode.dvi \ 87 ada-mode.dvi \
84 autotype.dvi \ 88 autotype.dvi \
@@ -120,6 +124,10 @@ DVI_TARGETS = \
120 widget.dvi \ 124 widget.dvi \
121 woman.dvi 125 woman.dvi
122 126
127ifeq (@DBUS_INFO@, dbus)
128 DVI_TARGETS += dbus.dvi
129endif
130
123 131
124TEXI2DVI = texi2dvi 132TEXI2DVI = texi2dvi
125 133
@@ -175,6 +183,12 @@ $(infodir)/cl: cl.texi
175cl.dvi: cl.texi 183cl.dvi: cl.texi
176 $(ENVADD) $(TEXI2DVI) ${srcdir}/cl.texi 184 $(ENVADD) $(TEXI2DVI) ${srcdir}/cl.texi
177 185
186dbus : $(infodir)/dbus
187$(infodir)/dbus: dbus.texi
188 cd $(srcdir); $(MAKEINFO) dbus.texi
189dbus.dvi: dbus.texi
190 $(ENVADD) $(TEXI2DVI) ${srcdir}/dbus.texi
191
178dired-x : $(infodir)/dired-x 192dired-x : $(infodir)/dired-x
179$(infodir)/dired-x: dired-x.texi 193$(infodir)/dired-x: dired-x.texi
180 cd $(srcdir); $(MAKEINFO) dired-x.texi 194 cd $(srcdir); $(MAKEINFO) dired-x.texi