To build wxEuphoria on Win32:

* Download and install OpenWatcom 1.6 (if you don't already have it)
  from www.openwatcom.org

* Download the latest wxWidgets 2.8 source from www.wxWidgets.org.

* Open a command line in the build\msw directory and type:
    > wmake -f makefile.wat BUILD=release USE_THREADS=0 SHARED=1 RUNTIME_LIBS=static

* When this is finished, you need to modify the wxEuphoria makefile to point to the wxWidgets
  library directory.  Find the line that defines "LIBDIRNAME" and change the entry to point
  to wherever wxmsw28_wat_custom.dll exists.  It should be (in relation to the top wxWidgets 
  directory):

  .\lib\wat_mswdll\

  It should have created a file:
  .\lib\wat_mswdll\wxmsw28_wat_custom.dll

* From the directory where you have the wxEuphoria source:
    > wmake -f makefile.wat BUILD=release USE_THREADS=0 SHARED=1

* Copy both wxmsw28_wat_custom.dll and libwxeu.dll to your %EUDIR%\bin directory.

To build wxEuphoria on Linux:

* Download the latest wxWidgets 2.8 source from www.wxWidgets.org

* From the base directory where you decompressed wxWidgets, type:

   $ ./configure
   $ make
   $ make install

* The binaries will be moved to a system directory.  You may need to
  run ldconfig (or /sbin/ldconfig) on the directory where the binaries
  were installed.

* From the wxEuphoria source directory, type:
  $ ./configure
  $ make
  $ make install

* The shared library will be moved to a system directory.  You may need to
  run ldconfig (or /sbin/ldconfig) on the directory where the binaries
  were installed (should be /usr/local/lib).


To build wxEuphoria on FreeBSD

* Download the latest wxWidgets 2.8 source from www.wxWidgets.org

* From the base directory where you decompressed wxWidgets, type:

   $ ./configure --disable-threads
   $ make
   $ make install
   $ ldconfig

* The binaries will be moved to a system directory.

* From the wxEuphoria source directory, type:
  $ ./configure
  $ make
  $ make install
  $ ldconfig

* The shared library will be moved to a /usr/local/lib.

