# 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 AM_CPPFLAGS = ${BOOST_CPPFLAGS} $(CPPUNIT_CFLAGS) ${CodePatterns_CFLAGS} TESTS = \ LinearSystemOfEquationsUnitTest \ LineUnitTest \ MatrixContentSymmetricUnitTest \ MatrixContentUnitTest \ MatrixUnitTest \ PlaneUnitTest \ VectorContentUnitTest \ VectorUnitTest check_PROGRAMS = $(TESTS) noinst_PROGRAMS = $(TESTS) TestRunner BOOST_LIB = $(BOOST_LDFLAGS) $(BOOST_MPL_LIB) $(BOOST_PROGRAM_OPTIONS_LIB) $(BOOST_FILESYSTEM_LIB) $(BOOST_SYSTEM_LIB) $(BOOST_THREAD_LIB) GSLLIBS = \ ../LinearAlgebra/libLinearAlgebra.la \ ${CodePatterns_LIBS} \ $(BOOST_LIB) TESTSOURCES = \ LinearSystemOfEquationsUnitTest.cpp \ LineUnitTest.cpp \ MatrixContentSymmetricUnitTest.cpp \ MatrixContentUnitTest.cpp \ MatrixUnitTest.cpp \ PlaneUnitTest.cpp \ VectorContentUnitTest.cpp \ VectorUnitTest.cpp TESTHEADERS = \ LinearSystemOfEquationsUnitTest.hpp \ LineUnitTest.hpp \ MatrixContentSymmetricUnitTest.hpp \ MatrixContentUnitTest.hpp \ MatrixUnitTest.hpp \ PlaneUnitTest.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} MatrixUnitTest_SOURCES = UnitTestMain.cpp \ MatrixUnitTest.cpp \ MatrixUnitTest.hpp MatrixUnitTest_LDADD = ${GSLLIBS} PlaneUnitTest_SOURCES = UnitTestMain.cpp \ PlaneUnitTest.cpp \ PlaneUnitTest.hpp PlaneUnitTest_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