From: Richard M. Stallman Date: Sat, 2 Sep 1995 16:25:34 +0000 (+0000) Subject: Simplify using new names file names src/makefile.in, X-Git-Tag: emacs-19.34~2868 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=2f3e7987f203dcdeee361532808748d8ac504064;p=emacs.git Simplify using new names file names src/makefile.in, config.in, paths.in. Change Echo commands not to use `. --- diff --git a/config.bat b/config.bat index 446060c186e..3f838c81430 100644 --- a/config.bat +++ b/config.bat @@ -57,33 +57,33 @@ shift goto again rem ---------------------------------------------------------------------- :msdos -Echo Checking whether `sed' is available... -Sed -e "w junk.$$$" junk.1 mv junk.1 junk.2 If Exist junk.2 Goto mvOk -Echo To configure `Emacs' you need to have `mv'! +Echo To configure 'Emacs' you need to have 'mv'! rm -f junk.1 Goto End :mvOk rm -f junk.2 -Echo Checking whether `gcc' is available... +Echo Checking whether 'gcc' is available... echo main(){} >junk.c gcc -c junk.c if exist junk.o goto gccOk -Echo To configure `Emacs' you need to have `gcc'! +Echo To configure 'Emacs' you need to have 'gcc'! rm -f junk.c Goto End :gccOk @@ -91,41 +91,17 @@ rm -f junk.c junk.o Rem ---------------------------------------------------------------------- Echo Configuring the source directory... cd src -set PATHSH=paths-h.in -if exist %PATHSH% goto src1 -set PATHSH=paths.h-in -if exist %PATHSH% goto src1 -echo config: *** The file originally called "src/paths.h.in" cannot be found. -cd .. -goto end -:src1 -set CONFIGH=config-h.in -if exist %CONFIGH% goto src2 -set CONFIGH=config.h-in -if exist %CONFIGH% goto src2 -echo config: *** The file originally called "src/config.h.in" cannot be found. -cd .. -goto end -:src2 -set MAKEFILEIN=makefile.in-in -if exist %MAKEFILEIN% goto src3 -set MAKEFILEIN=makefile-in.in -if exist %MAKEFILEIN% goto src3 -echo makefile: *** The file originally called "src/makefile.in.in" cannot be found. -cd .. -goto end -:src3 rem Create "paths.h" -sed -f ../msdos/sed4.inp <%PATHSH% >paths.tmp +sed -f ../msdos/sed4.inp paths.tmp update paths.tmp paths.h >nul rm -f paths.tmp rem Create "config.h" rm -f config.h2 config.tmp -cp %CONFIGH% config.tmp +cp config.in config.tmp if "%X11%" == "" goto src4 -sed -f ../msdos/sed2x.inp <%CONFIGH% >config.tmp +sed -f ../msdos/sed2x.inp config.tmp :src4 sed -f ../msdos/sed2.inp config.h2 update config.h2 config.h >nul @@ -134,11 +110,12 @@ rm -f config.tmp config.h2 rem On my system dir.h gets in the way. It's a VMS file so who cares. if exist dir.h ren dir.h vmsdir.h -rem Create "makefile" from "makefile.in.in". +rem Create "makefile" from "makefile.in". rm -f makefile junk.c -sed -e "1,/cpp stuff/s@^# .*$@@" <%MAKEFILEIN% >junk.c +sed -e "1,/cpp stuff/s@^# .*$@@" junk.c gcc -E junk.c | sed -f ../msdos/sed1.inp >makefile rm -f junk.c + if "%X11%" == "" goto src5 mv makefile makefile.tmp sed -f ../msdos/sed1x.inp makefile @@ -153,17 +130,9 @@ 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 "1,/cpp stuff/s@^# .*$@@" <%MAKEFILEIN% >junk.c -gcc -E -I. -I../src junk.c | sed -e "s/^ / /" -e "/^#/d" -e "/^[ ]*$/d" >Makefile.new +sed -e "1,/cpp stuff/s@^# .*$@@" junk.c +gcc -E -I. -I../src junk.c | sed -e "s/^ / /" -e "/^#/d" -e "/^[ ]*$/d" >makefile.new sed -f ../msdos/sed3.inp makefile rm -f makefile.new junk.c if "%nodebug%" == "" goto libsrc2 @@ -189,6 +158,3 @@ rem ---------------------------------------------------------------------- :end set X11= set nodebug= -set MAKEFILEIN= -set PATHSH= -set CONFIGH=