Index: trunk/psModules/src/mainpage.dox
===================================================================
--- trunk/psModules/src/mainpage.dox	(revision 3049)
+++ trunk/psModules/src/mainpage.dox	(revision 3651)
@@ -17,35 +17,21 @@
  - Combine readouts (pmReadoutCombine)
  - Subtract sky (pmSubtractSky)
+ - Object detection (pmObjects)
 
+The installed code for psModule consists of header files and a binary library.
 
-The installed code for psModule consists of header files and a static binary library (libpsmodule.a).
+@section extinstall Required external Libraries
 
-@section extinstall Required 3rd Party Libraries
-
-Before building psLib from source, several 3rd party software libraries must
+Before building psLib from source, several external software libraries must
 be installed. These include:
  - Pan-STARRS Library (psLib)
      - Available from the Maui High Performance Computiong Center (MHPCC) at https://mhpcc.pan-starrs.org/code/releases
-     - Compatibility tested with rel3
- - GNU Scientific Library (GSL)
-     - Available at http://www.gnu.org/software/gsl
-     - Compatibility tested with version is 1.4
- - Fastest Fourier Transform in the West (FFTW), version 3
-     - Available at http://www.fftw.org
-     - Compatibility tested with version is 3.0.1
- - C Flexible Image Transport System Input output (CFITSIO), version 2.480 or later
-     - Available at http://heasarc.gsfc.nasa.gov/docs/software/fitsio
-     - Compatibility tested with version is 2.490
-     - Versions earlier than 2.480 will not work as new functionality introduced in 2.480 is exercised
+     - Compatibility tested with rel5
+     - Note, psLib itself has many external library dependencies.
  - Doxygen Documentation System
+     - Only needed if code documentation is to be made
      - Available at http://www.doxygen.org
      - Compatibility tested with version 1.3.6
      - The optional companion package, GraphViz (a.k.a., the 'dot' command), is recommended to enable header-file dependency diagrams
- - SLALIB
-     - Available at http://star-www.rl.ac.uk/
-     - Compatibility tested with package version number 2.4-12
- - Gnome XML C parser and toolkit (libxml2)
-     - Available at http://www.xmlsoft.org
-     - Compatibility tested with version 2-2.6.16-3
 
 We recommend using the particular versions listed as compatibility tested, as
@@ -81,8 +67,8 @@
 where:
   - USERNAME is your login name on the server
-  - RELEASEBRANCH is the desired release branch, e.g. rel1.
+  - RELEASEBRANCH is the desired release branch, e.g. rel5.
 
 
-@section build How to Build the psModule library.
+@section build How to Build and Test the psModule Library.
 
 The psModule library and associated tests are made via the GNU autoconf/automake system.
@@ -92,24 +78,19 @@
 <pre>
 $ cd psModule
-$ configure --with-psLib=/home/kaiser/psLib (NB: Directory for psLib will vary)
+$ ./configure
 $ make
+$ make check
+$ make install
 </pre>
-<i>This builds files in psModule/src and psModule/test.</i>
+<i>Unless otherwise specified, the library is installed with PREFIX of the current directory.</i>
 
-Other configuration options, such as location of other 3rd party libraries, are also available.
+Other configuration options, such as location of external libraries, are also available.
 To get a list of options, type the following in the top psModule directory.
 <pre>
 $ configure --help
 </pre>
-
-@section run How to Build and Run Tests
-
-To test the installation, users may execute the unit tests which was automatically built
-when the user performs a make from the psModule directory.
-<pre>
-$ cd psModule/test
-$ ./FullUnitTest
-</pre>
-<i>This executes all test drivers in psModule/test.</i>
+A likely option needed is '--with-pslib-config', which specifies the location of
+the configuration script for psLib.  By default, iconfigure searches for it using PATH, but that
+is often not sufficient.
 
 @section doc How to Create Code Documentation
@@ -118,8 +99,8 @@
 documentation embedded in the code using the following commands:
 <pre>
-$ cd psModule/src
-$ doxygen
+$ cd psModule
+$ make docs
 </pre>
-<i>This places documentation in psModule/docs.</i>
+<i>This places documentation in PREFIX/docs.</i>
 
 Also, a prebuilt set of code documentation for both the releases and last
