+Continue with item c) below.
+
+
+b) If using the MinGW or Cygwin compilers
+
+You can get MinGW from http://www.mingw.org/
+
+Cygwin is available at http://sources.redhat.com/cygwin/
+
+The makefile might have small problems with Cygwin's tools
+so it is recommended to use MinGW 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 MinGW 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 MinGW 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 MinGW) or 0 (you have Cygwin).
+ 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 to choose
+ the features you would like to compile wxWindows with[out].
+
+ 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++)
+
+ See also docs/msw/install.txt for additional compilation options.
+
+d) Borland (including free command line tools)
+ Download tools from http://www.borland.com/downloads/
+
+ See docs/msw/install.txt for details; in brief
+
+-> type set WXWIN=c:\wxwindows
+-> type cd %WXWIN%\src\msw
+-> type make -f makefile.b32
+
+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).