Index: /trunk/psLib/src/Makefile
===================================================================
--- /trunk/psLib/src/Makefile	(revision 578)
+++ /trunk/psLib/src/Makefile	(revision 579)
@@ -3,6 +3,6 @@
 ##  Makefile:  psLib
 ##
-##  $Revision: 1.5 $  $Name: not supported by cvs2svn $
-##  $Date: 2004-04-27 02:16:17 $
+##  $Revision: 1.6 $  $Name: not supported by cvs2svn $
+##  $Date: 2004-05-05 20:46:25 $
 ##
 ##  Copyright 2004 Maui High Performance Computing Center, University of Hawaii
@@ -32,17 +32,17 @@
 # Define the target to build
 
-ALLTARGETS = sysUtils
+ALLTARGETS = sysUtils collections
 
 # 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
@@ -59,4 +59,8 @@
 	$(MAKE) --directory=sysUtils all
 
+collections:
+	$(MAKE) --directory=collections all
+
+
 ## ADD ADDITIONAL PORTIONS OF PSLIB HERE
 
@@ -67,4 +71,8 @@
 	$(MAKE) --directory=sysUtils install
 
+installCollections:
+	$(MAKE) --directory=collections install
+
+
 # Define PHONY target "cleanSysUtils" which will clean up the development
 # area for system utilites
@@ -73,4 +81,7 @@
 	$(MAKE) --directory=sysUtils clean
 
+cleanCollections:
+	$(MAKE) --directory=collections clean
+
 # Define PHONY target "distcleanSysUtils which will clean up the distribution
 # files related to system utilities
@@ -78,4 +89,8 @@
 distcleanSysUtils:
 	$(MAKE) --directory=sysUtils distclean
+        
+distcleanCollections:
+	$(MAKE) --directory=collections distclean
+
 
 # Rule to make include directory if needed
@@ -131,3 +146,3 @@
 
 # List of PHONY targets with make file
-.PHONY:  sysUtils
+.PHONY:  sysUtils collections
