
Change directories to the 'source' directory.  There you will find
the controlling Makefile for compiling ltplus.


Edit the Makefile to configure for your system.


Historically ltplus was compiled and run from /usr/local/ltp


When running the program, you MUST use the -m option on ltpgo


If graphics end up looking distorted you may need to 
set the environment variable:  BITSWAP.  This is currently needed
on Suns.  In fact, BITSWAP can be set to either TRUE or FALSE;
either one may be required under diferent scenarios.  If graphics
are broken up, first try setting it to TRUE, and if that doesn't
work, then try FALSE.

It is  recommended that you create a shell script similar to the following
which is used to run ltplus:


-----------------------------------------------------------------
#!/bin/csh -f

# if Bitswapping is needed
#setenv BITSWAP TRUE
#setenv BITSWAP FALSE

/usr/local/ltp/bin/ltpgo -m
-----------------------------------------------------------------

