diff options
| author | Miles Bader | 2003-09-04 16:01:15 +0000 |
|---|---|---|
| committer | Miles Bader | 2003-09-04 16:01:15 +0000 |
| commit | 36fcdbf62a16452bfeda9a415e98baa5a4ad3164 (patch) | |
| tree | b840acb289e4115708a2eaeb48b75dbb5a79bcd6 | |
| parent | 4256310de631bd57c78b88b5131caa073315b3d7 (diff) | |
| download | emacs-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/ChangeLog | 6 | ||||
| -rw-r--r-- | man/Makefile.in | 6 |
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 @@ | |||
| 1 | 2003-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 | |||
| 1 | 2003-09-03 Peter Runestig <peter@runestig.com> | 7 | 2003-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. |
| 27 | srcdir=@srcdir@ | 27 | srcdir=@srcdir@ |
| 28 | top_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. |
| 30 | VPATH=@srcdir@ | 31 | VPATH=@srcdir@ |
| @@ -102,7 +103,10 @@ EMACSSOURCES= \ | |||
| 102 | ${srcdir}/ack.texi \ | 103 | ${srcdir}/ack.texi \ |
| 103 | ${srcdir}/kmacro.texi | 104 | ${srcdir}/kmacro.texi |
| 104 | 105 | ||
| 105 | info: $(INFO_TARGETS) | 106 | $(top_srcdir)/info: |
| 107 | mkdir $@ | ||
| 108 | |||
| 109 | info: $(top_srcdir)/info $(INFO_TARGETS) | ||
| 106 | 110 | ||
| 107 | dvi: $(DVI_TARGETS) | 111 | dvi: $(DVI_TARGETS) |
| 108 | 112 | ||