]>
Commit | Line | Data |
---|---|---|
8e48d87a SC |
1 | @echo off |
2 | if "%1" == "h8/300" goto ok | |
3 | echo Specify one of [ h8/300 ] on command line | |
4 | goto exit | |
5 | ||
6 | :ok | |
7 | cd gcc | |
8 | call configure %1 | |
9 | cd ../gas | |
10 | call configure %1 | |
11 | cd ../bfd | |
12 | call configure %1 | |
13 | cd ../binutils | |
14 | call configure %1 | |
15 | cd ../ld | |
16 | call configure %1 | |
17 | cd ../libiberty | |
18 | call configure %1 | |
19 | cd .. | |
20 | ||
21 | :exit |