From 1f12ca9d5bfc8a55b3c2a53349f08dd66522a3ab Mon Sep 17 00:00:00 2001 From: Richard Kenner Date: Tue, 21 Feb 1995 18:33:40 -0500 Subject: [PATCH] Take arg specifying msdos or winnt batch file config. From-SVN: r9005 --- gcc/configure.bat | 17 +++++++++++++++-- 1 file changed, 15 insertions(+), 2 deletions(-) diff --git a/gcc/configure.bat b/gcc/configure.bat index bbe72e73bb2..88d7c0ae9d7 100644 --- a/gcc/configure.bat +++ b/gcc/configure.bat @@ -1,2 +1,15 @@ -@echo off -config\msdos\configure %1 %2 %3 %4 +@echo off +if %1.==msdos. goto call_msdos +if %1.==winnt. goto call_winnt +echo Usage: configure msdos or configure winnt +goto END + +:call_msdos +call config\msdos\configure %1 %2 %3 %4 +goto END + +:call_winnt +call config\i386\config-nt %1 %2 %3 %4 +goto END + +:END -- 2.30.2