***
*** Command Line Compiler Setup Notes
***

Your command line compiler tools must be set up properly.  Note that you have
an option of installing the command line tools (or not) when your compiler is
first installed. Refer to your compiler manufacturer's manual for details.

For ALL compilers, your path should point to the compiler BIN directory.
For example, to add "C:\BC50\BIN" to your existing path, use

   PATH C:\BC50\BIN;%PATH%

(1) MICROSOFT

Set LIB and INCLUDE environment variables. For example,

   SET INCLUDE=C:\MSVC\INCLUDE
   SET LIB=C:\MSVC\LIB

(2) BORLAND

Check that TURBOC.CFG, BCC32.CFG, TLINK.CFG, and TLINK32.CFG all have the
correct information in them, as they should have when your compiler was
installed.

Set the INCLUDE environment variables. For example,

   SET INCLUDE=C:\BC50\INCLUDE

BRCC doesn't use any *.CFG files, but will use INCLUDE if set as above.

If "SET LIB=" is used, it MUST point to Borlands LIB directory. Assuming that
TURBOC.CFG is correct, it is best to clear the LIB environment variable with

   SET LIB=

(3) WATCOM

Set the WATCOM environment variables to point to your compilers include (H) and
BIN directories. For example,

   SET INCLUDE=C:\WC106\H;C:\WC106\H\NT
   SET WATCOM=C:\WC106
   SET EDPATH=C:\WC106\EDDAT
   SET WWINHELP=E:\BINW

The above commands should be executed from a batch file. For example, create
the file USE_MSC.BAT containing the 3 lines

   PATH C:\MSVC\BIN;%PATH%
   SET INCLUDE=C:\MSVC\INCLUDE;C:\MSVC\MFC\INCLUDE
   SET LIB=C:\MSVC\LIB;C:\MSVC\MFC\LIB

Then type USE_MSC to set up your compiler's command line tools. Alternatively,
you can put "CALL USE_MSC" into you AUTOEXEC.BAT file.

Command line makefiles end with "._m_" for Microsoft C/C++, "._b_" for Borland
C/C++, and "._w_" for Watcom C/C++.

For example, to compile CONFTP:

For Microsoft C/C++, type:

   NMAKE -f CONFTP16._M_
   NMAKE -f CONFTP32._M_

For Borland C/C++, type:

   MAKE -f CONFTP16._B_
   MAKE -f CONFTP32._B_

For Watcom C/C++, type:

   WMAKE -f CONFTP32._W_

[END]
