aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJason Rumney2008-02-05 14:53:02 +0000
committerJason Rumney2008-02-05 14:53:02 +0000
commit2ca712b648eb109fe1e83c5824a3b36abfe0713b (patch)
tree3b0a0f79b7a999ee9a3baf0b0b59c6d6f16bf981
parent6a2094182893ce1b50bceb050bfa5f01fedd28a5 (diff)
downloademacs-2ca712b648eb109fe1e83c5824a3b36abfe0713b.tar.gz
emacs-2ca712b648eb109fe1e83c5824a3b36abfe0713b.zip
* makefile.w32-in (info): Depend on $(infodir)/dir
($(infodir)/dir): Depend on info files.
-rw-r--r--doc/emacs/ChangeLog5
-rw-r--r--doc/emacs/makefile.w32-in4
-rw-r--r--doc/lispintro/ChangeLog5
-rw-r--r--doc/lispintro/makefile.w32-in4
-rw-r--r--doc/lispref/ChangeLog5
-rw-r--r--doc/lispref/makefile.w32-in4
-rw-r--r--doc/misc/ChangeLog5
-rw-r--r--doc/misc/makefile.w32-in4
8 files changed, 28 insertions, 8 deletions
diff --git a/doc/emacs/ChangeLog b/doc/emacs/ChangeLog
index 5f416f61612..ad83776b711 100644
--- a/doc/emacs/ChangeLog
+++ b/doc/emacs/ChangeLog
@@ -1,3 +1,8 @@
12008-02-05 Jason Rumney <jasonr@gnu.org>
2
3 * makefile.w32-in (info): Depend on $(infodir)/dir
4 ($(infodir)/dir): Depend on info files.
5
12008-02-02 Eli Zaretskii <eliz@gnu.org> 62008-02-02 Eli Zaretskii <eliz@gnu.org>
2 7
3 * maintaining.texi (Tags): Fix last change. 8 * maintaining.texi (Tags): Fix last change.
diff --git a/doc/emacs/makefile.w32-in b/doc/emacs/makefile.w32-in
index 99b9e173f65..ad594887df6 100644
--- a/doc/emacs/makefile.w32-in
+++ b/doc/emacs/makefile.w32-in
@@ -102,7 +102,7 @@ EMACSSOURCES= \
102 $(srcdir)/kmacro.texi \ 102 $(srcdir)/kmacro.texi \
103 $(EMACS_XTRA) 103 $(EMACS_XTRA)
104 104
105info: $(INFO_TARGETS) 105info: $(INFO_TARGETS) $(infodir)/dir
106 106
107dvi: $(DVI_TARGETS) 107dvi: $(DVI_TARGETS)
108 108
@@ -111,7 +111,7 @@ dvi: $(DVI_TARGETS)
111# to exist in the build directory. 111# to exist in the build directory.
112# In a distribution of Emacs, the Info files should be up to date. 112# In a distribution of Emacs, the Info files should be up to date.
113 113
114$(infodir)/dir: 114$(infodir)/dir: $(INFO_TARGETS)
115 $(MULTI_INSTALL_INFO) --info-dir=$(infodir) $(INFO_TARGETS) 115 $(MULTI_INSTALL_INFO) --info-dir=$(infodir) $(INFO_TARGETS)
116 116
117$(infodir)/emacs: $(EMACSSOURCES) 117$(infodir)/emacs: $(EMACSSOURCES)
diff --git a/doc/lispintro/ChangeLog b/doc/lispintro/ChangeLog
index 33a431c8210..1db9e061e45 100644
--- a/doc/lispintro/ChangeLog
+++ b/doc/lispintro/ChangeLog
@@ -1,3 +1,8 @@
12008-02-05 Jason Rumney <jasonr@gnu.org>
2
3 * makefile.w32-in (info): Depend on $(infodir)/dir
4 ($(infodir)/dir): Depend on info files.
5
12008-01-31 Robert J. Chassell <bob@rattlesnake.com> 62008-01-31 Robert J. Chassell <bob@rattlesnake.com>
2 7
3 * emacs-lisp-intro.texi: Update back cover text. 8 * emacs-lisp-intro.texi: Update back cover text.
diff --git a/doc/lispintro/makefile.w32-in b/doc/lispintro/makefile.w32-in
index 8d22c821ac2..3de8f656307 100644
--- a/doc/lispintro/makefile.w32-in
+++ b/doc/lispintro/makefile.w32-in
@@ -38,9 +38,9 @@ ENVADD = $(srcdir)\..\..\nt\envadd.bat "TEXINPUTS=$(srcdir);$(TEXINPUTS)" \
38 38
39.SUFFIXES: .dvi .ps .texi 39.SUFFIXES: .dvi .ps .texi
40 40
41info: $(INFO_TARGETS) 41info: $(INFO_TARGETS) $(infodir)/dir
42 42
43$(infodir)/dir: 43$(infodir)/dir: $(INFO_TARGETS)
44 $(INSTALL_INFO) --info-dir=$(infodir) $(INFO_TARGETS) 44 $(INSTALL_INFO) --info-dir=$(infodir) $(INFO_TARGETS)
45 45
46dvi: $(DVI_TARGETS) 46dvi: $(DVI_TARGETS)
diff --git a/doc/lispref/ChangeLog b/doc/lispref/ChangeLog
index 12539758018..8703a279ec1 100644
--- a/doc/lispref/ChangeLog
+++ b/doc/lispref/ChangeLog
@@ -1,3 +1,8 @@
12008-02-05 Jason Rumney <jasonr@gnu.org>
2
3 * makefile.w32-in (info): Depend on $(infodir)/dir
4 ($(infodir)/dir): Depend on info files.
5
12008-01-27 Thien-Thi Nguyen <ttn@gnuvola.org> 62008-01-27 Thien-Thi Nguyen <ttn@gnuvola.org>
2 7
3 * display.texi (Button Types): 8 * display.texi (Button Types):
diff --git a/doc/lispref/makefile.w32-in b/doc/lispref/makefile.w32-in
index 381d389cae3..7e7fe87be11 100644
--- a/doc/lispref/makefile.w32-in
+++ b/doc/lispref/makefile.w32-in
@@ -101,9 +101,9 @@ srcs = \
101 101
102# The info file is named `elisp'. 102# The info file is named `elisp'.
103 103
104info: $(infodir)/elisp 104info: $(infodir)/elisp $(infodir)/dir
105 105
106$(infodir)/dir: 106$(infodir)/dir: $(infodir)/elisp
107 $(INSTALL_INFO) --info-dir=$(infodir) $(infodir)/elisp 107 $(INSTALL_INFO) --info-dir=$(infodir) $(infodir)/elisp
108 108
109$(infodir)/elisp: $(srcs) 109$(infodir)/elisp: $(srcs)
diff --git a/doc/misc/ChangeLog b/doc/misc/ChangeLog
index d4710db0675..a64153bb18f 100644
--- a/doc/misc/ChangeLog
+++ b/doc/misc/ChangeLog
@@ -1,3 +1,8 @@
12008-02-05 Jason Rumney <jasonr@gnu.org>
2
3 * makefile.w32-in (info): Depend on $(infodir)/dir
4 ($(infodir)/dir): Depend on info files.
5
12008-01-28 Michael Sperber <sperber@deinprogramm.de> 62008-01-28 Michael Sperber <sperber@deinprogramm.de>
2 7
3 * gnus.texi (Mail Source Specifiers): Document `group' specifier. 8 * gnus.texi (Mail Source Specifiers): Document `group' specifier.
diff --git a/doc/misc/makefile.w32-in b/doc/misc/makefile.w32-in
index da06d1af296..4da32e9e473 100644
--- a/doc/misc/makefile.w32-in
+++ b/doc/misc/makefile.w32-in
@@ -64,7 +64,7 @@ ENVADD = $(srcdir)\..\..\nt\envadd.bat "TEXINPUTS=$(srcdir);$(TEXINPUTS)" \
64 "MAKEINFO=$(MAKEINFO) -I$(srcdir)" /C 64 "MAKEINFO=$(MAKEINFO) -I$(srcdir)" /C
65 65
66 66
67info: $(INFO_TARGETS) 67info: $(INFO_TARGETS) $(infodir)/dir
68 68
69dvi: $(DVI_TARGETS) 69dvi: $(DVI_TARGETS)
70 70
@@ -79,7 +79,7 @@ dvi: $(DVI_TARGETS)
79# Some Windows ports of makeinfo seem to require -o to come before the 79# Some Windows ports of makeinfo seem to require -o to come before the
80# texi filename, contrary to GNU standards. 80# texi filename, contrary to GNU standards.
81 81
82$(infodir)/dir: 82$(infodir)/dir: $(INFO_TARGETS)
83 $(MULTI_INSTALL_INFO) --info-dir=$(infodir) $(INFO_TARGETS) 83 $(MULTI_INSTALL_INFO) --info-dir=$(infodir) $(INFO_TARGETS)
84 84
85$(infodir)/info: $(INFOSOURCES) 85$(infodir)/info: $(INFOSOURCES)