8sa1-gcc/gcc/configure.bat
Richard Kenner 53fd9c9a74 Use "go32" instead of "msdos" for future expansion.
Add ^M to end of each line.

From-SVN: r9587
1995-05-07 17:27:58 -04:00

17 lines
271 B
Batchfile

@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