2
0
mirror of https://sourceware.org/git/binutils-gdb.git synced 2025-03-01 13:26:47 +08:00
binutils-gdb/configure.bat

22 lines
288 B
Batchfile
Raw Normal View History

1992-02-22 08:25:24 +08:00
@echo off
if "%1" == "h8/300" goto ok
echo Specify one of [ h8/300 ] on command line
goto exit
:ok
cd gcc
call configure %1
cd ../gas
call configure %1
cd ../bfd
call configure %1
cd ../binutils
call configure %1
cd ../ld
call configure %1
cd ../libiberty
call configure %1
cd ..
:exit