# PLEASE adhere to the alphabetical ordering in this Makefile! # Also indentation by a single tab INCLUDES = -I$(top_srcdir)/src 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) BOOST_LIB = $(BOOST_LDFLAGS) $(BOOST_MPL_LIB) $(BOOST_PROGRAM_OPTIONS_LIB) $(BOOST_FILESYSTEM_LIB) $(BOOST_SYSTEM_LIB) $(BOOST_THREAD_LIB) GSLLIBS = \ ../../LinearAlgebra/libMolecuilderLinearAlgebra.la \ ../../Exceptions/libMolecuilderExceptions.la \ ${CodePatterns_LIBS} \ $(BOOST_LIB) LinearSystemOfEquationsUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \ LinearSystemOfEquationsUnitTest.cpp \ LinearSystemOfEquationsUnitTest.hpp LinearSystemOfEquationsUnitTest_LDADD = ${GSLLIBS} LineUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \ LineUnitTest.cpp \ LineUnitTest.hpp LineUnitTest_LDADD = ${GSLLIBS} MatrixContentSymmetricUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \ MatrixContentSymmetricUnitTest.cpp \ MatrixContentSymmetricUnitTest.hpp MatrixContentSymmetricUnitTest_LDADD = ${GSLLIBS} MatrixContentUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \ MatrixContentUnitTest.cpp \ MatrixContentUnitTest.hpp MatrixContentUnitTest_LDADD = ${GSLLIBS} MatrixUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \ MatrixUnitTest.cpp \ MatrixUnitTest.hpp MatrixUnitTest_LDADD = ${GSLLIBS} PlaneUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \ PlaneUnitTest.cpp \ PlaneUnitTest.hpp PlaneUnitTest_LDADD = ${GSLLIBS} VectorContentUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \ VectorContentUnitTest.cpp \ VectorContentUnitTest.hpp VectorContentUnitTest_LDADD = ${GSLLIBS} VectorUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \ VectorUnitTest.cpp \ VectorUnitTest.hpp VectorUnitTest_LDADD = ${GSLLIBS} #AUTOMAKE_OPTIONS = parallel-tests