Index: trunk/psLib/src/Makefile
===================================================================
--- trunk/psLib/src/Makefile	(revision 579)
+++ trunk/psLib/src/Makefile	(revision 596)
@@ -3,6 +3,6 @@
 ##  Makefile:  psLib
 ##
-##  $Revision: 1.6 $  $Name: not supported by cvs2svn $
-##  $Date: 2004-05-05 20:46:25 $
+##  $Revision: 1.7 $  $Name: not supported by cvs2svn $
+##  $Date: 2004-05-06 23:25:19 $
 ##
 ##  Copyright 2004 Maui High Performance Computing Center, University of Hawaii
@@ -34,4 +34,7 @@
 ALLTARGETS = sysUtils collections
 
+TARGET_DYNAMIC = libpslib.$(DLL)
+TARGET_STATIC = libpslib.a
+
 # Define the installation targets
 
@@ -48,5 +51,6 @@
 # Define PHONY target "all" which will make all necessary items
 
-all:	$(ALLTARGETS)  
+all:	$(ALLTARGETS)
+	$(BUILD_DYNAMIC1) $(TARGET_STATIC) $(BUILD_DYNAMIC2) $(TARGET_DYNAMIC)
 	@echo ""
 	@echo "    ---- All targets built successfully $(VERSION) ----"
@@ -126,4 +130,6 @@
 install: installdirs $(INSTALLTARGETS) docs
 	install *.h $(includedir)
+	install $(TARGET_STATIC) $(libexecdir)
+	install $(TARGET_DYNAMIC) $(libexecdir)
 
 # Define PHONY target "clean" to clean up the development areas for
@@ -131,4 +137,6 @@
 
 clean: $(CLEANTARGETS)
+	$(RM) -f $(TARGET_STATIC)
+	$(RM) -f $(TARGET_DYNAMIC)
 
 # Define PHONY target "distclean" to clean up the distribution area for
@@ -136,4 +144,6 @@
 
 distclean: $(DISTCLEANTARGETS)
+	$(RM) -f $(libexecdir)/$(TARGET_STATIC)
+	$(RM) -f $(libexecdir)/$(TARGET_DYNAMIC)
 
 # Define PHONY target "docs" to generate the Doxygen files for psLib
