------------------------------------------------------------------------------
------------------------------------------------------------------------------

How to Install using autoconf'ed PBS.


- untar the tar file and cd to the top level directory

- run "./configure" with the options set appropriately for your
  installation. (See note 1 below)

- run "make" (See note 2 below)

- run "make install"


-------------------------------------------------------------------

Note 1: It is advisable to create a simple shell script
  that calls configure with the appropriate options so that you
  can save typing on reconfigures. If you have already run configure
  you can remake all of the Makefiles by running "./config.status".
  Also, looking at the first few lines of config.status will
  tell you the options that were set when configure was run.
  To figure out which options one can set run "./configure --help"
  

Note 2: You need to use a POSIX (or nearly POSIX) make. GNU make
  works quite well in this regard; BSD make does not. If you are
  having any sort of build problems, your make should be a prime suspect.
  Tremendous effort has been expended to provide proper dependency
  generation and makefiles without relying on any non-POSIX features. 
  The build should work fine with a simple call to make, however,
  complicating things by using various make flags is not guaranteed
  to work. Don't be surprised if the first thing that make does is
  call configure again. See the note in Makefile.in if this happens.

If you need to modify configure.in you will need to get the GNU autoconf
package. autoheader is also used if new flags are being created.

