# PLEASE adhere to the alphabetical ordering in this Makefile! # Also indentation by a single tab INCLUDES = -I$(top_srcdir)/src/LinearAlgebra AM_LDFLAGS = ${CodePatterns_LIBS} $(CPPUNIT_LIBS) -ldl $(BOOST_EXCEPTION_LDFLAGS) AM_CPPFLAGS = ${BOOST_CPPFLAGS} $(CPPUNIT_CFLAGS) ${CodePatterns_CFLAGS} TESTS = \ LinearSystemOfEquationsUnitTest \ LineUnitTest \ MatrixContentSymmetricUnitTest \ MatrixContentUnitTest \ PlaneUnitTest \ RealSpaceMatrixUnitTest \ VectorContentUnitTest \ VectorUnitTest check_PROGRAMS = $(TESTS) noinst_PROGRAMS = $(TESTS) TestRunner GSLLIBS = \ ../LinearAlgebra/libLinearAlgebra.la \ ${CodePatterns_LIBS} \ $(BOOST_EXCEPTION_LIBS) TESTSOURCES = \ LinearSystemOfEquationsUnitTest.cpp \ LineUnitTest.cpp \ MatrixContentSymmetricUnitTest.cpp \ MatrixContentUnitTest.cpp \ PlaneUnitTest.cpp \ RealSpaceMatrixUnitTest.cpp \ VectorContentUnitTest.cpp \ VectorUnitTest.cpp TESTHEADERS = \ LinearSystemOfEquationsUnitTest.hpp \ LineUnitTest.hpp \ MatrixContentSymmetricUnitTest.hpp \ MatrixContentUnitTest.hpp \ PlaneUnitTest.hpp \ RealSpaceMatrixUnitTest.hpp \ VectorContentUnitTest.hpp \ VectorUnitTest.hpp LinearSystemOfEquationsUnitTest_SOURCES = UnitTestMain.cpp \ LinearSystemOfEquationsUnitTest.cpp \ LinearSystemOfEquationsUnitTest.hpp LinearSystemOfEquationsUnitTest_LDADD = ${GSLLIBS} LineUnitTest_SOURCES = UnitTestMain.cpp \ LineUnitTest.cpp \ LineUnitTest.hpp LineUnitTest_LDADD = ${GSLLIBS} MatrixContentSymmetricUnitTest_SOURCES = UnitTestMain.cpp \ MatrixContentSymmetricUnitTest.cpp \ MatrixContentSymmetricUnitTest.hpp MatrixContentSymmetricUnitTest_LDADD = ${GSLLIBS} MatrixContentUnitTest_SOURCES = UnitTestMain.cpp \ MatrixContentUnitTest.cpp \ MatrixContentUnitTest.hpp MatrixContentUnitTest_LDADD = ${GSLLIBS} PlaneUnitTest_SOURCES = UnitTestMain.cpp \ PlaneUnitTest.cpp \ PlaneUnitTest.hpp PlaneUnitTest_LDADD = ${GSLLIBS} RealSpaceMatrixUnitTest_SOURCES = UnitTestMain.cpp \ RealSpaceMatrixUnitTest.cpp \ RealSpaceMatrixUnitTest.hpp RealSpaceMatrixUnitTest_LDADD = ${GSLLIBS} VectorContentUnitTest_SOURCES = UnitTestMain.cpp \ VectorContentUnitTest.cpp \ VectorContentUnitTest.hpp VectorContentUnitTest_LDADD = ${GSLLIBS} VectorUnitTest_SOURCES = UnitTestMain.cpp \ VectorUnitTest.cpp \ VectorUnitTest.hpp VectorUnitTest_LDADD = ${GSLLIBS} TestRunner_SOURCES = TestRunnerMain.cpp $(TESTSOURCES) $(TESTHEADERS) TestRunner_LDADD = ${GSLLIBS} #AUTOMAKE_OPTIONS = parallel-tests