Index: trunk/psLib/src/Makefile
===================================================================
--- trunk/psLib/src/Makefile	(revision 641)
+++ trunk/psLib/src/Makefile	(revision 651)
@@ -3,6 +3,6 @@
 ##  Makefile:  psLib
 ##
-##  $Revision: 1.8 $  $Name: not supported by cvs2svn $
-##  $Date: 2004-05-12 00:17:20 $
+##  $Revision: 1.9 $  $Name: not supported by cvs2svn $
+##  $Date: 2004-05-12 21:49:39 $
 ##
 ##  Copyright 2004 Maui High Performance Computing Center, University of Hawaii
@@ -32,5 +32,5 @@
 # Define the target to build
 
-ALLTARGETS = sysUtils
+ALLTARGETS = sysUtils collections
 
 TARGET_DYNAMIC = libpslib.$(DLL)
@@ -39,13 +39,13 @@
 # Define the installation targets
 
-INSTALLTARGETS = installSysUtils
+INSTALLTARGETS = installSysUtils installCollections
 
 # Define the clean up targets
 
-CLEANTARGETS = cleanSysUtils
+CLEANTARGETS = cleanSysUtils cleanCollections
 
 # Define the distribution clean up targets
 
-DISTCLEANTARGETS = distcleanSysUtils
+DISTCLEANTARGETS = distcleanSysUtils distcleanCollections
 
 # Define PHONY target "all" which will make all necessary items
@@ -63,4 +63,8 @@
 	$(MAKE) --directory=sysUtils all
 
+collections:
+	$(MAKE) --directory=collections all
+
+
 ## ADD ADDITIONAL PORTIONS OF PSLIB HERE
 
@@ -71,4 +75,8 @@
 	$(MAKE) --directory=sysUtils install
 
+installCollections:
+	$(MAKE) --directory=collections install
+
+
 # Define PHONY target "cleanSysUtils" which will clean up the development
 # area for system utilites
@@ -76,4 +84,7 @@
 cleanSysUtils:
 	$(MAKE) --directory=sysUtils clean
+
+cleanCollections:
+	$(MAKE) --directory=collections clean
 
 # Define PHONY target "distcleanSysUtils which will clean up the distribution
@@ -83,4 +94,8 @@
 	$(MAKE) --directory=sysUtils distclean
         
+distcleanCollections:
+	$(MAKE) --directory=collections distclean
+
+
 # Rule to make include directory if needed
 
@@ -141,3 +156,3 @@
 
 # List of PHONY targets with make file
-.PHONY:  sysUtils
+.PHONY:  sysUtils collections
