Requirements
------------
This describes the installation process for the Tm library and the moat
interpreter. It is assumed that you have the Motif 1.2.1 development libraries
and the tcl libraries version 7.0. I don't know how you will fare with other
versions of these libraries - it almost certainly won't work with Motif 1.1
because I use lots of 1.2 functions that may or may not be in 1.1, but were
definitely never documented.

Imakefile
---------
Edit the file src/Imakefile to set the location of the Motif and tcl include
header files and libraries in the variables 

	TCL_INCLUDE
	MOTIF_INCLUDE
	TCL_LIB
	MOTIF_LIB


Make
----
To create the library and moat, type

	xmkmf
	make Makefiles
	make

To install the library, moat and the man pages, type

	make install
	make install.man

If you don't have imake, xmkmf or really don't want to use them, the file
src/Makefile.orig can be used to build moat. You are a bit on your own from
there though.

