Index: /trunk/psLib/src/Makefile
===================================================================
--- /trunk/psLib/src/Makefile	(revision 523)
+++ /trunk/psLib/src/Makefile	(revision 524)
@@ -3,6 +3,6 @@
 ##  Makefile:  psLib
 ##
-##  $Revision: 1.4 $  $Name: not supported by cvs2svn $
-##  $Date: 2004-04-23 23:40:52 $
+##  $Revision: 1.5 $  $Name: not supported by cvs2svn $
+##  $Date: 2004-04-27 02:16:17 $
 ##
 ##  Copyright 2004 Maui High Performance Computing Center, University of Hawaii
@@ -110,4 +110,5 @@
 
 install: installdirs $(INSTALLTARGETS) docs
+	install *.h $(includedir)
 
 # Define PHONY target "clean" to clean up the development areas for
Index: /trunk/psLib/src/psLib.h
===================================================================
--- /trunk/psLib/src/psLib.h	(revision 524)
+++ /trunk/psLib/src/psLib.h	(revision 524)
@@ -0,0 +1,45 @@
+/** @file  psLib.h
+ *
+ *  @brief Contains the complete list of header files for pslib.
+ *
+ *  This header file includes all the necessary header files for a user to
+ *  user all public functions within the pslib library.
+ *
+ *  @author Eric Van Alst, MHPCC
+ *   
+ *  @version $Revision: 1.1 $ $Name: not supported by cvs2svn $
+ *  @date $Date: 2004-04-27 02:16:17 $
+ *
+ *  Copyright 2004 Maui High Performance Computing Center, University of Hawaii
+ */
+
+#ifndef PS_LIB_H
+#define PS_LIB_H
+
+/******************************************************************************/
+/*  INCLUDE FILES                                                             */
+/******************************************************************************/
+
+#include "psMemory.h"
+#include "psLogMsg.h"
+#include "psAbort.h"
+#include "psError.h"
+
+/******************************************************************************/
+/*  DEFINE STATEMENTS                                                         */
+/******************************************************************************/
+
+// None
+
+/******************************************************************************/
+/*  TYPE DEFINITIONS                                                          */
+/******************************************************************************/
+
+// None
+
+/*****************************************************************************/
+/* FUNCTION PROTOTYPES                                                       */
+/*****************************************************************************/
+
+#endif
+
