8sa1-gcc/gcc/configure.bat
Richard Kenner c6b3160017 Arg 2 is which machine (i386 or alpha).
From-SVN: r9368
1995-04-13 08:39:06 -04:00

16 lines
255 B
Batchfile

@echo off
if %1.==msdos. goto call_msdos
if %1.==winnt. goto call_winnt
echo Usage: configure msdos or configure winnt
goto 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