Index: trunk/psLib/test/fileUtils/Makefile
===================================================================
--- trunk/psLib/test/fileUtils/Makefile	(revision 3037)
+++ trunk/psLib/test/fileUtils/Makefile	(revision 3056)
@@ -3,6 +3,6 @@
 ##  Makefile:   test/fileUtils
 ##
-##  $Revision: 1.2 $  $Name: not supported by cvs2svn $
-##  $Date: 2005-01-12 22:17:02 $
+##  $Revision: 1.3 $  $Name: not supported by cvs2svn $
+##  $Date: 2005-01-19 01:53:00 $
 ##
 ##  Copyright 2004 Maui High Performance Computing Center, University of Hawaii
@@ -16,5 +16,5 @@
 include ../../src/Makefile.Globals
 
-CFLAGS := -I../../include $(CFLAGS)
+CFLAGS := -I../../include -DUTC_DAT_FILE="\"$(prefix)/data/tai_utc.dat\"" $(CFLAGS)
 LDFLAGS := -L../../lib -lpslib -lpstest $(LDFLAGS)
 
@@ -34,4 +34,5 @@
 
 install: $(testbindir) $(testbindir)/verified $(TARGET)
+	install $(TARGET) $(testbindir)
 	install verified/*.stderr verified/*.stdout $(testbindir)/verified
 
Index: trunk/psLib/test/fileUtils/tst_psLookupTable_01.c
===================================================================
--- trunk/psLib/test/fileUtils/tst_psLookupTable_01.c	(revision 3037)
+++ trunk/psLib/test/fileUtils/tst_psLookupTable_01.c	(revision 3056)
@@ -12,6 +12,6 @@
 *  @author  Ross Harman, MHPCC
 *
-*  @version $Revision: 1.5 $  $Name: not supported by cvs2svn $
-*  @date  $Date: 2004-12-23 19:38:38 $
+*  @version $Revision: 1.6 $  $Name: not supported by cvs2svn $
+*  @date  $Date: 2005-01-19 01:53:00 $
 *
 *  Copyright 2004 Maui High Performance Computing Center, University of Hawaii
@@ -36,5 +36,5 @@
     psLookupTable* table1 = NULL;
 
-    table1 = psLookupTableAlloc("../../data/tai_utc.dat", 0, 2451179.6);
+    table1 = psLookupTableAlloc(UTC_DAT_FILE, 0, 2451179.6);
     table1 = psLookupTableRead(table1);
     out1 = psLookupTableInterpolate(table1, index1, 0, &status1);
@@ -56,5 +56,5 @@
     psF64 truthData2[] = {31.5, 41317, 0};
 
-    table2 = psLookupTableAlloc("../../data/tai_utc.dat", 0, 2451179.6);
+    table2 = psLookupTableAlloc(UTC_DAT_FILE, 0, 2451179.6);
     table2 = psLookupTableRead(table2);
     stats2 = psVectorAlloc(table2->numCols, PS_TYPE_U32);
@@ -78,5 +78,5 @@
     psLookupTable* table3 = NULL;
 
-    table3 = psLookupTableAlloc("../../data/tai_utc.dat", 0, 2451179.6);
+    table3 = psLookupTableAlloc(UTC_DAT_FILE, 0, 2451179.6);
     table3 = psLookupTableRead(table3);
     out3 = psLookupTableInterpolate(table3, index3, 0, &status3);
@@ -93,5 +93,5 @@
     psLookupTable* table4 = NULL;
 
-    table4 = psLookupTableAlloc("../../data/tai_utc.dat", 0, 2451179.6);
+    table4 = psLookupTableAlloc(UTC_DAT_FILE, 0, 2451179.6);
     table4 = psLookupTableRead(table4);
     out4 = psLookupTableInterpolate(table4, index4, 0, &status4);
