aboutsummaryrefslogtreecommitdiff
path: root/configure.bat
diff options
context:
space:
mode:
authorSteve Chamberlain <sac@cygnus>1992-02-22 00:25:24 +0000
committerSteve Chamberlain <sac@cygnus>1992-02-22 00:25:24 +0000
commit8e48d87af60233cc7e8dc18ab4e8f63d223ac20f (patch)
treed2b48cf1bd0f8c18727f5cf1dc56023d35d9b45c /configure.bat
parentabca39c14a58f088719c65197fdefc4358e8d435 (diff)
downloadfsf-binutils-gdb-8e48d87af60233cc7e8dc18ab4e8f63d223ac20f.zip
fsf-binutils-gdb-8e48d87af60233cc7e8dc18ab4e8f63d223ac20f.tar.gz
fsf-binutils-gdb-8e48d87af60233cc7e8dc18ab4e8f63d223ac20f.tar.bz2
More dos scripts
Diffstat (limited to 'configure.bat')
-rw-r--r--configure.bat21
1 files changed, 21 insertions, 0 deletions
diff --git a/configure.bat b/configure.bat
new file mode 100644
index 0000000..673b612
--- /dev/null
+++ b/configure.bat
@@ -0,0 +1,21 @@
+@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