Bump for snapshot
[gcc.git] / gcc / configure.bat
1 @echo off
2 if %1.==go32. goto call_go32
3 if %1.==winnt. goto call_winnt
4 echo Usage: configure go32 or configure winnt cpu
5 goto END
6
7 :call_go32
8 call config\msdos\configure %1 %2 %3 %4
9 goto END
10
11 :call_winnt
12 if %2.==i386. goto really_call_winnt
13 if %2.==alpha. goto really_call_winnt
14 echo Usage: configure winnt i386 or configure winnt alpha
15 goto END
16 :really_call_winnt
17 call config\winnt\config-nt %1 %2 %3 %4
18 goto END
19
20 :END
21