-COMPILING USING MAKEFILES
-=========================
-
-- Copy the file include/wx/motif/setup0.h to include/wx/motif/setup.h and
- edit it if you wish to enable/disable some library features
-
-- Choose a .env file from src/makeenvs that matches your
- environment, and copy it to src/make.env. These are the
- settings read by wxWindows for Motif makefiles.
-
-- Edit src/make.env to change options according to your local
- environment. In particular, change WXDIR to where wxWindows is
- found on your system, or set the WXWIN environment variable
- before compilation, e.g.:
-
- export WXWIN=/home/jacs/wx2
-
- Please feel free to contribute settings files for your environment.
-
-- Change directory to src/motif and type:
-
- make -f makefile.unx motif
-
- This should make the library libwx_motif.a in the lib
- directory. Note that this makefile system does not build shared
- libraries, only static ones (that is, the wxWindows library will be
- linked statically; to see remaining dependencies on shared libraries,
- type e.g. ldd minimal_motif).
-
-- Make a sample, such as the minimal sample:
-
- cd samples/minimal
- make -f makefile.unx motif
-
- and run the resulting minimal_motif binary.
-