| [fff54f] | 1 | # PLEASE adhere to the alphabetical ordering in this Makefile!
 | 
|---|
 | 2 | # Also indentation by a single tab
 | 
|---|
 | 3 | 
 | 
|---|
 | 4 | INCLUDES = -I$(top_srcdir)/src
 | 
|---|
 | 5 | 
 | 
|---|
| [a0064e] | 6 | AM_LDFLAGS = ${CodePatterns_LIBS} $(CPPUNIT_LIBS) -ldl
 | 
|---|
 | 7 | AM_CPPFLAGS = ${BOOST_CPPFLAGS} $(CPPUNIT_CFLAGS) ${CodePatterns_CFLAGS}
 | 
|---|
| [fff54f] | 8 | 
 | 
|---|
 | 9 | TESTS = \
 | 
|---|
| [78b593] | 10 |   LinearSystemOfEquationsUnitTest \
 | 
|---|
| [f89024] | 11 |   LineUnitTest \
 | 
|---|
| [fff54f] | 12 |   MatrixContentSymmetricUnitTest \
 | 
|---|
 | 13 |   MatrixContentUnitTest \
 | 
|---|
| [5bc8229] | 14 |   MatrixUnitTest \
 | 
|---|
| [dfafe7] | 15 |   PlaneUnitTest \
 | 
|---|
 | 16 |   VectorContentUnitTest \
 | 
|---|
 | 17 |   VectorUnitTest
 | 
|---|
| [fff54f] | 18 | 
 | 
|---|
 | 19 | 
 | 
|---|
 | 20 | check_PROGRAMS = $(TESTS) 
 | 
|---|
 | 21 | noinst_PROGRAMS = $(TESTS)
 | 
|---|
 | 22 | 
 | 
|---|
 | 23 | BOOST_LIB = $(BOOST_LDFLAGS) $(BOOST_MPL_LIB) $(BOOST_PROGRAM_OPTIONS_LIB) $(BOOST_FILESYSTEM_LIB) $(BOOST_SYSTEM_LIB) $(BOOST_THREAD_LIB)
 | 
|---|
 | 24 | GSLLIBS = \
 | 
|---|
| [acbe1b] | 25 |         ../../LinearAlgebra/libMolecuilderLinearAlgebra.la \
 | 
|---|
 | 26 |         ../../Exceptions/libMolecuilderExceptions.la \
 | 
|---|
| [a0064e] | 27 |         ${CodePatterns_LIBS} \
 | 
|---|
| [fff54f] | 28 |         $(BOOST_LIB)
 | 
|---|
 | 29 | 
 | 
|---|
| [78b593] | 30 | LinearSystemOfEquationsUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \
 | 
|---|
 | 31 |         LinearSystemOfEquationsUnitTest.cpp \
 | 
|---|
 | 32 |         LinearSystemOfEquationsUnitTest.hpp
 | 
|---|
 | 33 | LinearSystemOfEquationsUnitTest_LDADD = ${GSLLIBS}
 | 
|---|
 | 34 | 
 | 
|---|
| [f89024] | 35 | LineUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \
 | 
|---|
 | 36 |         LineUnitTest.cpp \
 | 
|---|
 | 37 |         LineUnitTest.hpp
 | 
|---|
 | 38 | LineUnitTest_LDADD = ${GSLLIBS}
 | 
|---|
 | 39 | 
 | 
|---|
| [fff54f] | 40 | MatrixContentSymmetricUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \
 | 
|---|
 | 41 |         MatrixContentSymmetricUnitTest.cpp \
 | 
|---|
 | 42 |         MatrixContentSymmetricUnitTest.hpp
 | 
|---|
 | 43 | MatrixContentSymmetricUnitTest_LDADD = ${GSLLIBS}
 | 
|---|
 | 44 | 
 | 
|---|
 | 45 | MatrixContentUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \
 | 
|---|
 | 46 |         MatrixContentUnitTest.cpp \
 | 
|---|
 | 47 |         MatrixContentUnitTest.hpp
 | 
|---|
 | 48 | MatrixContentUnitTest_LDADD = ${GSLLIBS}
 | 
|---|
 | 49 | 
 | 
|---|
 | 50 | MatrixUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \
 | 
|---|
 | 51 |         MatrixUnitTest.cpp \
 | 
|---|
 | 52 |         MatrixUnitTest.hpp
 | 
|---|
 | 53 | MatrixUnitTest_LDADD = ${GSLLIBS}
 | 
|---|
 | 54 | 
 | 
|---|
| [5bc8229] | 55 | PlaneUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \
 | 
|---|
 | 56 |         PlaneUnitTest.cpp \
 | 
|---|
 | 57 |         PlaneUnitTest.hpp
 | 
|---|
 | 58 | PlaneUnitTest_LDADD = ${GSLLIBS}
 | 
|---|
 | 59 | 
 | 
|---|
| [dfafe7] | 60 | VectorContentUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \
 | 
|---|
 | 61 |         VectorContentUnitTest.cpp \
 | 
|---|
 | 62 |         VectorContentUnitTest.hpp
 | 
|---|
 | 63 | VectorContentUnitTest_LDADD = ${GSLLIBS}
 | 
|---|
 | 64 | 
 | 
|---|
 | 65 | VectorUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \
 | 
|---|
 | 66 |         VectorUnitTest.cpp \
 | 
|---|
 | 67 |         VectorUnitTest.hpp 
 | 
|---|
 | 68 | VectorUnitTest_LDADD = ${GSLLIBS}
 | 
|---|
 | 69 | 
 | 
|---|
| [fff54f] | 70 | 
 | 
|---|
 | 71 | #AUTOMAKE_OPTIONS = parallel-tests
 | 
|---|