From: Richard M. Stallman Date: Wed, 4 May 1994 07:01:35 +0000 (+0000) Subject: entered into RCS X-Git-Tag: emacs-19.34~8540 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=315ebba37b0fb71893fdb4a9ca26d2b3aaf1ead0;p=emacs.git entered into RCS --- diff --git a/config.bat b/config.bat index d83656c8b20..dd7922b3766 100644 --- a/config.bat +++ b/config.bat @@ -103,8 +103,16 @@ cd .. rem ---------------------------------------------------------------------- Echo Configuring the library source directory... cd lib-src +set MAKEFILEIN=makefile.in-in +if exist %MAKEFILEIN% goto libsrc1 +set MAKEFILEIN=makefile-in.in +if exist %MAKEFILEIN% goto libsrc1 +echo makefile: *** The file originally called "lib-src/Makefile.in.in" cannot be found. +cd .. +goto end +:libsrc1 rem Create "makefile" from "makefile.in". -sed -e "s@^# \(Generated.*\)$@/* \1 */@" -e "s@/\*\*/#\(.*\)$@/* \1 */@" junk.c +sed -e "s@^# \(Generated.*\)$@/* \1 */@" -e "s@/\*\*/#\(.*\)$@/* \1 */@" <%MAKEFILEIN% >junk.c gcc -E -I. -I../src junk.c | sed -e "s/^ / /" -e "/^#/d" -e "/^[ ]*$/d" >Makefile.new sed -f ../msdos/sed3.inp makefile cd ..