Mercurial > emacs
annotate config.bat @ 14561:6d6fd8e250ed libc-960213 libc-960214 libc-960215 libc-960216 libc-960217 libc-960218 libc-960219 libc-960220 libc-960221 libc-960222 libc-960223 libc-960224 libc-960225 libc-960226 libc-960227 libc-960228 libc-960229
Recognize sparclet cpu.
author | Doug Evans <dje@gnu.org> |
---|---|
date | Mon, 12 Feb 1996 23:15:30 +0000 |
parents | 327ff78701e0 |
children | 63951d3f3995 |
rev | line source |
---|---|
5484 | 1 @echo off |
2 rem ---------------------------------------------------------------------- | |
3 rem Configuration script for MSDOS | |
7195
73d9c538cce2
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
5486
diff
changeset
|
4 rem Copyright (C) 1994 Free Software Foundation, Inc. |
73d9c538cce2
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
5486
diff
changeset
|
5 |
5484 | 6 rem This file is part of GNU Emacs. |
7 | |
8 rem GNU Emacs is free software; you can redistribute it and/or modify | |
9 rem it under the terms of the GNU General Public License as published by | |
10 rem the Free Software Foundation; either version 2, or (at your option) | |
11 rem any later version. | |
12 | |
13 rem GNU Emacs is distributed in the hope that it will be useful, | |
14 rem but WITHOUT ANY WARRANTY; without even the implied warranty of | |
15 rem MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
16 rem GNU General Public License for more details. | |
17 | |
18 rem You should have received a copy of the GNU General Public License | |
19 rem along with GNU Emacs; see the file COPYING. If not, write to | |
20 rem the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. | |
21 rem ---------------------------------------------------------------------- | |
22 rem YOU'LL NEED THE FOLLOWING UTILITIES TO MAKE EMACS: | |
23 rem | |
7195
73d9c538cce2
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
5486
diff
changeset
|
24 rem + msdos version 3 or better. |
13927
327ff78701e0
Discuss djgpp version; eliminate mention of Simtel.
Richard M. Stallman <rms@gnu.org>
parents:
12992
diff
changeset
|
25 rem + djgpp version 1,11 maint 4 or better (but not version 2). |
7195
73d9c538cce2
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
5486
diff
changeset
|
26 rem + make utility that allows breaking of the 128 chars limit on |
73d9c538cce2
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
5486
diff
changeset
|
27 rem command lines. ndmake (as of version 4.5) won't work due to a |
13927
327ff78701e0
Discuss djgpp version; eliminate mention of Simtel.
Richard M. Stallman <rms@gnu.org>
parents:
12992
diff
changeset
|
28 rem line length limit. The make that comes with djgpp does work. |
5484 | 29 rem + rm, mv, chmod (From GNU file utilities). |
30 rem + sed. | |
7195
73d9c538cce2
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
5486
diff
changeset
|
31 rem |
13927
327ff78701e0
Discuss djgpp version; eliminate mention of Simtel.
Richard M. Stallman <rms@gnu.org>
parents:
12992
diff
changeset
|
32 rem You should be able to get all the above utilities from |
327ff78701e0
Discuss djgpp version; eliminate mention of Simtel.
Richard M. Stallman <rms@gnu.org>
parents:
12992
diff
changeset
|
33 rem oak.oakland.edu in the directories |
327ff78701e0
Discuss djgpp version; eliminate mention of Simtel.
Richard M. Stallman <rms@gnu.org>
parents:
12992
diff
changeset
|
34 rem "/pub/msdos/djgpp" and "/pub/msdos/gnuish". There are other mirror |
327ff78701e0
Discuss djgpp version; eliminate mention of Simtel.
Richard M. Stallman <rms@gnu.org>
parents:
12992
diff
changeset
|
35 rem sites as well. |
5484 | 36 rem ---------------------------------------------------------------------- |
9570 | 37 set X11= |
38 set nodebug= | |
39 :again | |
40 if "%1" == "" goto usage | |
41 if "%1" == "--with-x" goto withx | |
42 if "%1" == "--no-debug" goto nodebug | |
5484 | 43 if "%1" == "msdos" goto msdos |
44 :usage | |
9570 | 45 echo Usage: config [--with-x] [--no-debug] msdos |
46 echo [Read the script before you run it.] | |
5484 | 47 goto end |
48 rem ---------------------------------------------------------------------- | |
9570 | 49 :withx |
50 set X11=Y | |
51 shift | |
52 goto again | |
53 rem ---------------------------------------------------------------------- | |
54 :nodebug | |
55 set nodebug=Y | |
56 shift | |
57 goto again | |
7195
73d9c538cce2
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
5486
diff
changeset
|
58 rem ---------------------------------------------------------------------- |
5484 | 59 :msdos |
12992
09c2ad9213dd
Simplify using new names file names src/makefile.in,
Richard M. Stallman <rms@gnu.org>
parents:
9570
diff
changeset
|
60 Echo Checking whether 'sed' is available... |
09c2ad9213dd
Simplify using new names file names src/makefile.in,
Richard M. Stallman <rms@gnu.org>
parents:
9570
diff
changeset
|
61 sed -e "w junk.$$$" <Nul |
9570 | 62 If Exist junk.$$$ Goto sedOk |
12992
09c2ad9213dd
Simplify using new names file names src/makefile.in,
Richard M. Stallman <rms@gnu.org>
parents:
9570
diff
changeset
|
63 Echo To configure 'Emacs' you need to have 'sed'! |
9570 | 64 Goto End |
65 :sedOk | |
12992
09c2ad9213dd
Simplify using new names file names src/makefile.in,
Richard M. Stallman <rms@gnu.org>
parents:
9570
diff
changeset
|
66 Echo Checking whether 'rm' is available... |
9570 | 67 rm -f junk.$$$ |
68 If Not Exist junk.$$$ Goto rmOk | |
12992
09c2ad9213dd
Simplify using new names file names src/makefile.in,
Richard M. Stallman <rms@gnu.org>
parents:
9570
diff
changeset
|
69 Echo To configure 'Emacs' you need to have 'rm'! |
9570 | 70 Goto End |
71 :rmOk | |
12992
09c2ad9213dd
Simplify using new names file names src/makefile.in,
Richard M. Stallman <rms@gnu.org>
parents:
9570
diff
changeset
|
72 Echo Checking whether 'mv' is available... |
9570 | 73 rm -f junk.1 junk.2 |
74 echo foo >junk.1 | |
75 mv junk.1 junk.2 | |
76 If Exist junk.2 Goto mvOk | |
12992
09c2ad9213dd
Simplify using new names file names src/makefile.in,
Richard M. Stallman <rms@gnu.org>
parents:
9570
diff
changeset
|
77 Echo To configure 'Emacs' you need to have 'mv'! |
9570 | 78 rm -f junk.1 |
79 Goto End | |
80 :mvOk | |
81 rm -f junk.2 | |
12992
09c2ad9213dd
Simplify using new names file names src/makefile.in,
Richard M. Stallman <rms@gnu.org>
parents:
9570
diff
changeset
|
82 Echo Checking whether 'gcc' is available... |
9570 | 83 echo main(){} >junk.c |
84 gcc -c junk.c | |
85 if exist junk.o goto gccOk | |
12992
09c2ad9213dd
Simplify using new names file names src/makefile.in,
Richard M. Stallman <rms@gnu.org>
parents:
9570
diff
changeset
|
86 Echo To configure 'Emacs' you need to have 'gcc'! |
9570 | 87 rm -f junk.c |
88 Goto End | |
89 :gccOk | |
90 rm -f junk.c junk.o | |
91 Rem ---------------------------------------------------------------------- | |
5484 | 92 Echo Configuring the source directory... |
93 cd src | |
94 | |
95 rem Create "paths.h" | |
12992
09c2ad9213dd
Simplify using new names file names src/makefile.in,
Richard M. Stallman <rms@gnu.org>
parents:
9570
diff
changeset
|
96 sed -f ../msdos/sed4.inp <paths.in >paths.tmp |
9570 | 97 update paths.tmp paths.h >nul |
98 rm -f paths.tmp | |
5484 | 99 |
100 rem Create "config.h" | |
9570 | 101 rm -f config.h2 config.tmp |
12992
09c2ad9213dd
Simplify using new names file names src/makefile.in,
Richard M. Stallman <rms@gnu.org>
parents:
9570
diff
changeset
|
102 cp config.in config.tmp |
7195
73d9c538cce2
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
5486
diff
changeset
|
103 if "%X11%" == "" goto src4 |
12992
09c2ad9213dd
Simplify using new names file names src/makefile.in,
Richard M. Stallman <rms@gnu.org>
parents:
9570
diff
changeset
|
104 sed -f ../msdos/sed2x.inp <config.in >config.tmp |
7195
73d9c538cce2
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
5486
diff
changeset
|
105 :src4 |
9570 | 106 sed -f ../msdos/sed2.inp <config.tmp >config.h2 |
107 update config.h2 config.h >nul | |
108 rm -f config.tmp config.h2 | |
5484 | 109 |
110 rem On my system dir.h gets in the way. It's a VMS file so who cares. | |
111 if exist dir.h ren dir.h vmsdir.h | |
112 | |
12992
09c2ad9213dd
Simplify using new names file names src/makefile.in,
Richard M. Stallman <rms@gnu.org>
parents:
9570
diff
changeset
|
113 rem Create "makefile" from "makefile.in". |
5486
c87d1cd3f62a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
5484
diff
changeset
|
114 rm -f makefile junk.c |
12992
09c2ad9213dd
Simplify using new names file names src/makefile.in,
Richard M. Stallman <rms@gnu.org>
parents:
9570
diff
changeset
|
115 sed -e "1,/cpp stuff/s@^# .*$@@" <makefile.in >junk.c |
5484 | 116 gcc -E junk.c | sed -f ../msdos/sed1.inp >makefile |
5486
c87d1cd3f62a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
5484
diff
changeset
|
117 rm -f junk.c |
12992
09c2ad9213dd
Simplify using new names file names src/makefile.in,
Richard M. Stallman <rms@gnu.org>
parents:
9570
diff
changeset
|
118 |
9570 | 119 if "%X11%" == "" goto src5 |
120 mv makefile makefile.tmp | |
121 sed -f ../msdos/sed1x.inp <makefile.tmp >makefile | |
122 rm -f makefile.tmp | |
123 :src5 | |
124 | |
125 if "%nodebug%" == "" goto src6 | |
126 sed -e "/^CFLAGS *=/s/ *-g//" <makefile >makefile.tmp | |
127 mv -f makefile.tmp makefile | |
128 :src6 | |
5484 | 129 cd .. |
130 rem ---------------------------------------------------------------------- | |
131 Echo Configuring the library source directory... | |
132 cd lib-src | |
133 rem Create "makefile" from "makefile.in". | |
12992
09c2ad9213dd
Simplify using new names file names src/makefile.in,
Richard M. Stallman <rms@gnu.org>
parents:
9570
diff
changeset
|
134 sed -e "1,/cpp stuff/s@^# .*$@@" <makefile.in >junk.c |
09c2ad9213dd
Simplify using new names file names src/makefile.in,
Richard M. Stallman <rms@gnu.org>
parents:
9570
diff
changeset
|
135 gcc -E -I. -I../src junk.c | sed -e "s/^ / /" -e "/^#/d" -e "/^[ ]*$/d" >makefile.new |
7195
73d9c538cce2
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
5486
diff
changeset
|
136 sed -f ../msdos/sed3.inp <makefile.new >makefile |
9570 | 137 rm -f makefile.new junk.c |
138 if "%nodebug%" == "" goto libsrc2 | |
139 sed -e "/^CFLAGS *=/s/ *-g//" <makefile >makefile.tmp | |
140 mv -f makefile.tmp makefile | |
141 :libsrc2 | |
5484 | 142 cd .. |
143 rem ---------------------------------------------------------------------- | |
9570 | 144 if "%X11%" == "" goto oldx1 |
145 Echo Configuring the oldxmenu directory... | |
146 cd oldxmenu | |
147 sed -f ../msdos/sed5x.inp <makefile.in >makefile | |
148 if "%nodebug%" == "" goto oldx2 | |
149 sed -e "/^CFLAGS *=/s/ *-g//" <makefile >makefile.tmp | |
150 mv -f makefile.tmp makefile | |
151 :oldx2 | |
152 cd .. | |
153 :oldx1 | |
154 rem ---------------------------------------------------------------------- | |
5484 | 155 Echo Configuring the main directory... |
156 copy msdos\mainmake makefile >nul | |
157 rem ---------------------------------------------------------------------- | |
158 :end | |
7195
73d9c538cce2
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
5486
diff
changeset
|
159 set X11= |
9570 | 160 set nodebug= |