]> sjero.net Git - wget/blobdiff - configure.bat.in
[svn] Remove support for Watcom's compiler.
[wget] / configure.bat.in
index 1a717bf9460ab269146eaea903a9748adffeb536..4b59f40f31c0ae456ad6ffc89f2b60a17ddb309e 100644 (file)
@@ -26,10 +26,9 @@ rem modify this file, you may extend this exception to your version of the
 rem file, but you are not obligated to do so.  If you do not wish to do
 rem so, delete this exception statement from your version.
 
-cls
 if .%1 == .--borland goto :borland
+if .%1 == .--mingw goto :mingw
 if .%1 == .--msvc goto :msvc
-if .%1 == .--watcom goto :watcom
 goto :usage
 
 :msvc
@@ -52,20 +51,15 @@ copy windows\Makefile.doc doc\Makefile > nul
 echo Type MAKE to start compiling.
 goto :end
 
-:watcom
-copy windows\config.h.ms src\config.h > nul
-copy windows\Makefile.watcom src\Makefile > nul
+:mingw
+copy windows\config.h.mingw src\config.h > nul
+copy windows\Makefile.top.mingw Makefile > nul
+copy windows\Makefile.src.mingw src\Makefile > nul
+copy windows\Makefile.doc doc\Makefile > nul
 
-@echo Checking environment vars
-@set INCLUDE | find /I "WATCOM"
-@set LIB     | find /I "WATCOM"
-@echo If WATCOM directories were not displayed, you need to
-@echo SET INCLUDE and SET LIB to the Watcom directories
-@echo.
-cd src
-@echo Type WMAKE to build
+echo Type mingw32-make to start compiling.
 goto :end
 
 :usage
-echo "Usage: configure [--borland | --msvc | --watcom]"
+echo "Usage: configure [--borland | --mingw | --msvc]"
 :end