Index: trunk/psLib/test/collections/Makefile
===================================================================
--- trunk/psLib/test/collections/Makefile	(revision 780)
+++ trunk/psLib/test/collections/Makefile	(revision 857)
@@ -3,6 +3,6 @@
 ##  Makefile:   test/collections
 ##
-##  $Revision: 1.8 $  $Name: not supported by cvs2svn $
-##  $Date: 2004-05-25 23:53:51 $
+##  $Revision: 1.9 $  $Name: not supported by cvs2svn $
+##  $Date: 2004-06-04 03:13:37 $
 ##
 ##  Copyright 2004 Maui High Performance Computing Center, University of Hawaii
@@ -50,5 +50,8 @@
 clean:
 	@echo "    Deleting executable and binary files for 'test/collections'"
-	$(RM) $(TARGET) *.o *.lint
+	$(RM) $(TARGET) *.o *.lint *.i *.d
+
+%.o : %.i
+	$(CC) $(CFLAGS) $(CPPFLAGS) -I$(PSLIB_INCL_DIR) -c -o $@ $<
 
 %.o : %.c
@@ -56,8 +59,11 @@
 
 %   : %.o
-	$(CC) -o $@ $< -L$(PSLIB_LIB_DIR) -lpslib -lpstest $(LDFLAGS) 
+	$(CC) -o $@ $< -L$(PSLIB_LIB_DIR) -lpslib -lpstest $(LDFLAGS)
 
 %.lint: %.c
 	splint +posixlib -exportlocal -realcompare $(INCLUDE_GLOBAL) $? > $@; cat $@
+
+%.i: %.c
+	$(CC) -E $(CFLAGS) $(CPPFLAGS) -I$(PSLIB_INCL_DIR) -o $@ $<
 
 %.d: %.c
