[cig-commits] r9046 - cs/benchmark/cigma/trunk/src/tests

luis at geodynamics.org luis at geodynamics.org
Mon Jan 14 21:28:19 PST 2008


Author: luis
Date: 2008-01-14 21:28:19 -0800 (Mon, 14 Jan 2008)
New Revision: 9046

Modified:
   cs/benchmark/cigma/trunk/src/tests/Makefile
Log:
Changed extension of tests (.out), and added TestNumeric.o to build list

Modified: cs/benchmark/cigma/trunk/src/tests/Makefile
===================================================================
--- cs/benchmark/cigma/trunk/src/tests/Makefile	2008-01-15 05:28:17 UTC (rev 9045)
+++ cs/benchmark/cigma/trunk/src/tests/Makefile	2008-01-15 05:28:19 UTC (rev 9046)
@@ -15,6 +15,7 @@
 TESTOBJS = \
 	TestAnyOption.o \
 	TestStringUtils.o \
+	TestNumeric.o \
 	TestTet.o \
 	TestHex.o \
 	TestPoints.o \
@@ -24,14 +25,14 @@
 	TestFiatProxy.o \
 
 
-TESTS = $(TESTOBJS:.o=)
+TESTS = $(TESTOBJS:.o=.out)
 
 default: clean $(TESTOBJS) $(TESTS)
 
 Test%.o: Test%.cpp
 	$(CXX) $(FLAGS) -c $^
 
-Test%: Test%.o
+Test%.out: Test%.o
 	$(CXX) $(LDFLAGS) $^ $(TESTLIB) -o $@
 
 clean:



More information about the cig-commits mailing list