From: Steve Chamberlain Date: Sat, 22 Feb 1992 00:25:24 +0000 (+0000) Subject: More dos scripts X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=8e48d87af60233cc7e8dc18ab4e8f63d223ac20f;p=binutils-gdb.git More dos scripts --- diff --git a/.Sanitize b/.Sanitize index 586613bb9f9..aaf1477017f 100644 --- a/.Sanitize +++ b/.Sanitize @@ -34,7 +34,7 @@ cfg-paper.texi clib config config.sub -configdos.bat +configure.bat configure configure.in configure.man diff --git a/configure.bat b/configure.bat new file mode 100644 index 00000000000..673b612c898 --- /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