aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard M. Stallman1994-01-07 13:46:21 +0000
committerRichard M. Stallman1994-01-07 13:46:21 +0000
commitdd0d2cf36b50880f604e0af83dbaaea0ad4cd54c (patch)
tree082609bf7646d4d1d87e3d8e73eb72ceb2f7efc1
parent13dbb2cc14e06574faa960a038c1dfb189763dac (diff)
downloademacs-dd0d2cf36b50880f604e0af83dbaaea0ad4cd54c.tar.gz
emacs-dd0d2cf36b50880f604e0af83dbaaea0ad4cd54c.zip
*** empty log message ***
-rw-r--r--config.bat14
1 files changed, 4 insertions, 10 deletions
diff --git a/config.bat b/config.bat
index 4f8767975b2..45aa38199f0 100644
--- a/config.bat
+++ b/config.bat
@@ -19,12 +19,11 @@ rem the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
19rem ---------------------------------------------------------------------- 19rem ----------------------------------------------------------------------
20rem YOU'LL NEED THE FOLLOWING UTILITIES TO MAKE EMACS: 20rem YOU'LL NEED THE FOLLOWING UTILITIES TO MAKE EMACS:
21rem 21rem
22rem + djgpp. 22rem + djgpp version 1,11
23rem + make utility that allows breaking of 128 chars limit of commands. 23rem + make utility that allows breaking of 128 chars limit of commands.
24rem ndmake (as of version 4.5) won't work due to a line length limit. 24rem ndmake (as of version 4.5) won't work due to a line length limit.
25rem + rm, mv, chmod (From GNU file utilities). 25rem + rm, mv, chmod (From GNU file utilities).
26rem + sed. 26rem + sed.
27rem + patch (Larry Wall's for instance. I think it's supplied with djgpp).
28rem ---------------------------------------------------------------------- 27rem ----------------------------------------------------------------------
29if not "%2" == "" goto usage 28if not "%2" == "" goto usage
30if "%1" == "msdos" goto msdos 29if "%1" == "msdos" goto msdos
@@ -77,15 +76,10 @@ rem On my system dir.h gets in the way. It's a VMS file so who cares.
77if exist dir.h ren dir.h vmsdir.h 76if exist dir.h ren dir.h vmsdir.h
78 77
79rem Create "makefile" from "makefile.in.in" using a context patch. 78rem Create "makefile" from "makefile.in.in" using a context patch.
80rm -f makefile 79rm -f makefile junk.c
81cp %MAKEFILEIN% makefile 80cp %MAKEFILEIN% junk.c
82patch -p1 -B ! -r patch.rjt makefile ../msdos/patch1
83echo All hunks above should have passed! If they didn't, you'll have to
84echo update manually. That should be easy though.
85mv makefile junk.c
86gcc -E junk.c | sed -f ../msdos/sed1.inp >makefile 81gcc -E junk.c | sed -f ../msdos/sed1.inp >makefile
87del !makefile 82rm -f junk.c
88del junk.c
89cd .. 83cd ..
90rem ---------------------------------------------------------------------- 84rem ----------------------------------------------------------------------
91Echo Configuring the library source directory... 85Echo Configuring the library source directory...