# HG changeset patch # User Miles Bader # Date 1062691275 0 # Node ID 780f2d29c5f1b4d80211075d12ced05607041b89 # Parent 27bc8b966642487193058a9036011fcf80300847 Revision: miles@gnu.org--gnu-2003/emacs--cvs-trunk--0--patch-34 Create the info subdir at build-time if necessary diff -r 27bc8b966642 -r 780f2d29c5f1 man/ChangeLog --- a/man/ChangeLog Thu Sep 04 04:00:49 2003 +0000 +++ b/man/ChangeLog Thu Sep 04 16:01:15 2003 +0000 @@ -1,3 +1,9 @@ +2003-09-04 Miles Bader + + * Makefile.in (top_srcdir): New variable. + ($(top_srcdir)/info): New rule. + (info): Depend on it. + 2003-09-03 Peter Runestig * makefile.w32-in: New file. diff -r 27bc8b966642 -r 780f2d29c5f1 man/Makefile.in --- a/man/Makefile.in Thu Sep 04 04:00:49 2003 +0000 +++ b/man/Makefile.in Thu Sep 04 16:01:15 2003 +0000 @@ -25,6 +25,7 @@ # utility programs is expected to be in ${srcdir}/lib-src. This is # set by the configure script's `--srcdir' option. srcdir=@srcdir@ +top_srcdir=@top_srcdir@ # Tell make where to find source files; this is needed for the makefiles. VPATH=@srcdir@ @@ -102,7 +103,10 @@ ${srcdir}/ack.texi \ ${srcdir}/kmacro.texi -info: $(INFO_TARGETS) +$(top_srcdir)/info: + mkdir $@ + +info: $(top_srcdir)/info $(INFO_TARGETS) dvi: $(DVI_TARGETS)