+a) If using Microsoft Visual C++ 5.0 or 6.0
+
+Ensure that the command-line compiler and tools (including
+nmake) are installed and ready to run. Depending on your
+installation there may be a batch file (named something like
+VCVARS32.BAT) that needs to be run to set correct environment
+varaibles and PATH entries.
+
+Continue with item c) below.
+
+
+b) If using the GNU Mingw32 or GNU Cygwin32 compilers
+
+You can get Mingw32 from http://www.mingw.org
+
+Cygwin32 is available at http://www.cygwin.com
+
+The makefile might have small problems with Cygwin's tools
+so it is recommended to use Mingw32 and its toolchain instead
+if possible.
+
+-> Set your path so that it includes the directory
+ where your compiler and tools reside
+
+-> If your are using an old Mingw32 version (gcc-2.95 or older),
+ you might need to fix some headers with the patches contained
+ in the wxWin\Mingw32-gcc295.patches file. PLEASE APPLY THESE
+ PATCHES BY HAND! There are apparently a few different versions
+ of the headers floating around. Note that these patches are
+ not needed if you are using Mingw32 gcc-2.95.2 or newer.
+
+-> Edit wx/src/makeg95.env and set the MINGW32 variable at the top of
+ the file to either 1 (you have Mingw32) or 0 (you have Cygwin32).
+ If using MINGW32, also set the MINGW32VERSION variable
+ appropiately.
+
+
+c) Build instructions
+
+-> Assumming that you installed the wxWindows sources
+ into c:\wxWin
+-> Copy c:\wxWin\include\wx\msw\setup0.h
+ to c:\wxWin\include\wx\msw\setup.h
+-> Edit c:\wxWin\include\wx\msw\setup.h so that
+ most features are enabled (i.e. defined to 1), for example:
+ #define wxUSE_ODBC 0
+ #define wxUSE_SOCKETS 1
+ #define wxUSE_HTML 1
+ #define wxUSE_THREADS 1
+ #define wxUSE_FS_INET 0
+ #define wxUSE_FS_ZIP 1
+ #define wxUSE_BUSYINFO 1
+ #define wxUSE_DYNLIB_CLASS 1
+ #define wxUSE_ZIPSTREAM 1
+ #define wxUSE_LIBJPEG 1
+ #define wxUSE_LIBPNG 1
+
+ and std iostreams are disabled with
+ #define wxUSE_STD_IOSTREAM 0
+
+-> type: cd c:\wxWin\src\msw
+-> type: make -f makefile.g95 (if using GNU tools)
+or type: nmake -f makefile.vc (if using MS VC++)
+
+
+II) Unix ports
+--------------
+
+Building wxGTK or wxMotif completely without configure
+won't ever work, but there is now a new makefile system
+that works without libtool and automake, using only
+configure to create what is needed.
+
+In order to create configure, you need to have the
+GNU autoconf package (version 2.13 or 2.14) installed
+on your system and type run "autoconf" in the base
+directory (or run the autogen.sh script in the same
+directory, which just calls autoconf).