aboutsummaryrefslogtreecommitdiffstats
path: root/config.bat
diff options
context:
space:
mode:
authorGlenn Morris2010-05-19 23:24:35 -0700
committerGlenn Morris2010-05-19 23:24:35 -0700
commit74e6ff9a60576fca7fd7a6e6fbbff6eb0abc68cd (patch)
treeb56bf74135c9a95008e66c7f6a0262d0920f6533 /config.bat
parentc3ba133a80a3659ecdf7f8a157c42d0b7b785e9a (diff)
downloademacs-74e6ff9a60576fca7fd7a6e6fbbff6eb0abc68cd.tar.gz
emacs-74e6ff9a60576fca7fd7a6e6fbbff6eb0abc68cd.zip
* config.bat: Need to add the deps.mk file before running cpp.
Diffstat (limited to 'config.bat')
-rw-r--r--config.bat8
1 files changed, 4 insertions, 4 deletions
diff --git a/config.bat b/config.bat
index 4ce30874e8f..ba31161962e 100644
--- a/config.bat
+++ b/config.bat
@@ -190,11 +190,11 @@ rem On my system dir.h gets in the way. It's a VMS file so who cares.
190if exist dir.h ren dir.h vmsdir.h 190if exist dir.h ren dir.h vmsdir.h
191 191
192rem Create "makefile" from "makefile.in". 192rem Create "makefile" from "makefile.in".
193rm -f Makefile junk.c 193rm -f Makefile junk.c junk2.c
194sed -e "1,/== start of cpp stuff ==/s@^##*[ ].*$@@" <Makefile.in >junk.c 194sed -e "1,/== start of cpp stuff ==/s@^##*[ ].*$@@" <Makefile.in >junk.c
195gcc -E -traditional junk.c | sed -f ../msdos/sed1v2.inp >makefile.tmp 195copy junk.c + deps.mk junk2.c
196copy makefile.tmp + deps.mk Makefile 196gcc -E -traditional junk2.c | sed -f ../msdos/sed1v2.inp >Makefile
197rm -f junk.c makefile.tmp 197rm -f junk.c junk2.c
198 198
199if "%X11%" == "" goto src5 199if "%X11%" == "" goto src5
200mv Makefile makefile.tmp 200mv Makefile makefile.tmp