mirror of
https://github.com/moparisthebest/wget
synced 2024-07-03 16:38:41 -04:00
72 lines
2.5 KiB
Batchfile
72 lines
2.5 KiB
Batchfile
@echo off
|
|
rem Configure batch file for `Wget' utility
|
|
rem Copyright (C) 1995, 1996, 1997 Free Software Foundation, Inc.
|
|
|
|
rem This program is free software; you can redistribute it and/or modify
|
|
rem it under the terms of the GNU General Public License as published by
|
|
rem the Free Software Foundation; either version 2 of the License, or
|
|
rem (at your option) any later version.
|
|
|
|
rem This program is distributed in the hope that it will be useful,
|
|
rem but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
rem MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
rem GNU General Public License for more details.
|
|
|
|
rem You should have received a copy of the GNU General Public License
|
|
rem along with this program; if not, write to the Free Software
|
|
rem Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
|
|
|
rem In addition, as a special exception, the Free Software Foundation
|
|
rem gives permission to link the code of its release of Wget with the
|
|
rem OpenSSL project's "OpenSSL" library (or with modified versions of it
|
|
rem that use the same license as the "OpenSSL" library), and distribute
|
|
rem the linked executables. You must obey the GNU General Public License
|
|
rem in all respects for all of the code used other than "OpenSSL". If you
|
|
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 == .--msvc goto :msvc
|
|
if .%1 == .--watcom goto :watcom
|
|
goto :usage
|
|
|
|
:msvc
|
|
copy windows\config.h.ms src\config.h > nul
|
|
copy windows\Makefile.top Makefile > nul
|
|
copy windows\Makefile.src src\Makefile > nul
|
|
copy windows\Makefile.doc doc\Makefile > nul
|
|
|
|
echo Type NMAKE to start compiling.
|
|
echo If it doesn't work, try executing MSDEV\BIN\VCVARS32.BAT first,
|
|
echo and then NMAKE.
|
|
goto :end
|
|
|
|
:borland
|
|
copy windows\config.h.bor src\config.h > nul
|
|
copy windows\Makefile.top.bor Makefile > nul
|
|
copy windows\Makefile.src.bor src\Makefile > nul
|
|
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
|
|
|
|
@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
|
|
goto :end
|
|
|
|
:usage
|
|
echo "Usage: configure [--borland | --msvc | --watcom]"
|
|
:end
|