]> sjero.net Git - wget/blob - configure.bat
Minor msgid fixes. Typos, and corrected contact mail.
[wget] / configure.bat
1 @echo off\r
2 rem Configure batch file for `Wget' utility\r
3 rem Copyright (C) 1995, 1996, 1997, 2007, 2008 Free Software Foundation, Inc.\r
4 \r
5 rem This program is free software; you can redistribute it and/or modify\r
6 rem it under the terms of the GNU General Public License as published by\r
7 rem the Free Software Foundation; either version 3 of the License, or\r
8 rem (at your option) any later version.\r
9 \r
10 rem This program is distributed in the hope that it will be useful,\r
11 rem but WITHOUT ANY WARRANTY; without even the implied warranty of\r
12 rem MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\r
13 rem GNU General Public License for more details.\r
14 \r
15 rem You should have received a copy of the GNU General Public License\r
16 rem along with this program.  If not, see <http://www.gnu.org/licenses/>.\r
17 \r
18 rem Additional permission under GNU GPL version 3 section 7\r
19 \r
20 rem If you modify this program, or any covered work, by linking or\r
21 rem combining it with the OpenSSL project's OpenSSL library (or a\r
22 rem modified version of that library), containing parts covered by the\r
23 rem terms of the OpenSSL or SSLeay licenses, the Free Software Foundation\r
24 rem grants you additional permission to convey the resulting work.\r
25 rem Corresponding Source for a non-source form of such a combination\r
26 rem shall include the source code for the parts of OpenSSL used as well\r
27 rem as that of the covered work.\r
28 \r
29 if .%1 == .--borland goto :borland\r
30 if .%1 == .--mingw goto :mingw\r
31 if .%1 == .--msvc goto :msvc\r
32 goto :usage\r
33 \r
34 :msvc\r
35 copy windows\Makefile.top Makefile > nul\r
36 copy windows\Makefile.src src\Makefile > nul\r
37 copy windows\Makefile.doc doc\Makefile > nul\r
38 \r
39 echo Type NMAKE to start compiling.\r
40 echo If it doesn't work, try executing MSDEV\BIN\VCVARS32.BAT first,\r
41 echo and then NMAKE.\r
42 goto :end\r
43 \r
44 :borland\r
45 copy windows\Makefile.top.bor Makefile > nul\r
46 copy windows\Makefile.src.bor src\Makefile > nul\r
47 copy windows\Makefile.doc doc\Makefile > nul\r
48 \r
49 echo Type MAKE to start compiling.\r
50 goto :end\r
51 \r
52 :mingw\r
53 copy windows\Makefile.top.mingw Makefile > nul\r
54 copy windows\Makefile.src.mingw src\Makefile > nul\r
55 copy windows\Makefile.doc doc\Makefile > nul\r
56 \r
57 echo Type mingw32-make to start compiling.\r
58 goto :end\r
59 \r
60 :usage\r
61 echo "Usage: configure [--borland | --mingw | --msvc]"\r
62 :end\r
63 \r
64 copy windows\config.h src\config.h > nul\r
65 copy windows\config-compiler.h src\config-compiler.h > nul\r