
This directory holds the compiler and platform specific portions of the 
main Makefile.  They are controlled by the setting of the TARGET environment 
variable and optionally, the setting of the COMPILER environment variable.

This TARGET variable drives the inclusion of the compiler tools file
Makefile.$(TARGET)$(COMPILER), and the compiler tools options file,
Makeinclude.$(TARGET)$(COMPILER).  Use of the COMPILER option, allows
different compilers to be used to build the library.  TARGET must be
set to build on a given platform, COMPILER usually does not need to be
set, to use the default platform compiler.

Some examples:

    TARGET   COMPILER   Description
    ------   --------   -----------
    linux               Uses Makefile.linux and Makeinclude.linux,
			using the gcc compiler under linux.

    netware             Uses Makefile.netware and Makeinclude.netware,
			using the default platform compiler, cc.

    netware    cl	Uses Makefile.netwarecl and Makeinclude.netwarecl,
			using the Microsoft compiler cl.

