diff options
author | Richard Kenner <kenner@gcc.gnu.org> | 1995-05-07 17:27:58 -0400 |
---|---|---|
committer | Richard Kenner <kenner@gcc.gnu.org> | 1995-05-07 17:27:58 -0400 |
commit | 53fd9c9a740f9584b8c4112d12cc80a55185c77f (patch) | |
tree | f75e269a837f89bb9238d107661b670b05b21af4 /gcc/configure.bat | |
parent | 3edbc4b95fc4440ff6fbeebc259af6806baf5e1c (diff) | |
download | gcc-53fd9c9a740f9584b8c4112d12cc80a55185c77f.zip gcc-53fd9c9a740f9584b8c4112d12cc80a55185c77f.tar.gz gcc-53fd9c9a740f9584b8c4112d12cc80a55185c77f.tar.bz2 |
Use "go32" instead of "msdos" for future expansion.
Add ^M to end of each line.
From-SVN: r9587
Diffstat (limited to 'gcc/configure.bat')
-rw-r--r-- | gcc/configure.bat | 29 |
1 files changed, 15 insertions, 14 deletions
diff --git a/gcc/configure.bat b/gcc/configure.bat index c1d7630..a031b0c 100644 --- a/gcc/configure.bat +++ b/gcc/configure.bat @@ -1,15 +1,16 @@ -@echo off -if %1.==msdos. goto call_msdos -if %1.==winnt. goto call_winnt -echo Usage: configure msdos or configure winnt -goto END +@echo off
+if %1.==go32. goto call_go32
+if %1.==winnt. goto call_winnt
+echo Usage: configure go32 or configure winnt cpu
+goto END
+
+:call_go32
+call config\msdos\configure %1 %2 %3 %4
+goto END
+
+:call_winnt
+call config\%2\config-nt %1 %2 %3 %4
+goto END
+
+:END
-:call_msdos -call config\msdos\configure %1 %2 %3 %4 -goto END - -:call_winnt -call config\%2\config-nt %1 %2 %3 %4 -goto END - -:END |