aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMiles Bader2003-09-04 16:01:15 +0000
committerMiles Bader2003-09-04 16:01:15 +0000
commit36fcdbf62a16452bfeda9a415e98baa5a4ad3164 (patch)
treeb840acb289e4115708a2eaeb48b75dbb5a79bcd6
parent4256310de631bd57c78b88b5131caa073315b3d7 (diff)
downloademacs-36fcdbf62a16452bfeda9a415e98baa5a4ad3164.tar.gz
emacs-36fcdbf62a16452bfeda9a415e98baa5a4ad3164.zip
Revision: miles@gnu.org--gnu-2003/emacs--cvs-trunk--0--patch-34
Create the info subdir at build-time if necessary
-rw-r--r--man/ChangeLog6
-rw-r--r--man/Makefile.in6
2 files changed, 11 insertions, 1 deletions
diff --git a/man/ChangeLog b/man/ChangeLog
index 849c656fcb5..b1746ac32d0 100644
--- a/man/ChangeLog
+++ b/man/ChangeLog
@@ -1,3 +1,9 @@
12003-09-04 Miles Bader <miles@gnu.org>
2
3 * Makefile.in (top_srcdir): New variable.
4 ($(top_srcdir)/info): New rule.
5 (info): Depend on it.
6
12003-09-03 Peter Runestig <peter@runestig.com> 72003-09-03 Peter Runestig <peter@runestig.com>
2 8
3 * makefile.w32-in: New file. 9 * makefile.w32-in: New file.
diff --git a/man/Makefile.in b/man/Makefile.in
index 2d3014c6dce..fc0729a56b2 100644
--- a/man/Makefile.in
+++ b/man/Makefile.in
@@ -25,6 +25,7 @@
25# utility programs is expected to be in ${srcdir}/lib-src. This is 25# utility programs is expected to be in ${srcdir}/lib-src. This is
26# set by the configure script's `--srcdir' option. 26# set by the configure script's `--srcdir' option.
27srcdir=@srcdir@ 27srcdir=@srcdir@
28top_srcdir=@top_srcdir@
28 29
29# Tell make where to find source files; this is needed for the makefiles. 30# Tell make where to find source files; this is needed for the makefiles.
30VPATH=@srcdir@ 31VPATH=@srcdir@
@@ -102,7 +103,10 @@ EMACSSOURCES= \
102 ${srcdir}/ack.texi \ 103 ${srcdir}/ack.texi \
103 ${srcdir}/kmacro.texi 104 ${srcdir}/kmacro.texi
104 105
105info: $(INFO_TARGETS) 106$(top_srcdir)/info:
107 mkdir $@
108
109info: $(top_srcdir)/info $(INFO_TARGETS)
106 110
107dvi: $(DVI_TARGETS) 111dvi: $(DVI_TARGETS)
108 112