Use "go32" instead of "msdos" for future expansion.

Add ^M to end of each line.

From-SVN: r9587
This commit is contained in:
Richard Kenner 1995-05-07 17:27:58 -04:00
parent 3edbc4b95f
commit 53fd9c9a74
1 changed files with 15 additions and 14 deletions

View File

@ -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