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 |
|
---|
6 | AM_LDFLAGS = $(CPPUNIT_LIBS) -ldl
|
---|
7 | AM_CXXFLAGS = $(CPPUNIT_CFLAGS)
|
---|
8 | AM_CPPFLAGS = ${BOOST_CPPFLAGS}
|
---|
9 |
|
---|
10 | TESTS = \
|
---|
11 | LinearSystemOfEquationsUnitTest \
|
---|
12 | LineUnitTest \
|
---|
13 | MatrixContentSymmetricUnitTest \
|
---|
14 | MatrixContentUnitTest \
|
---|
15 | MatrixUnitTest \
|
---|
16 | PlaneUnitTest
|
---|
17 |
|
---|
18 |
|
---|
19 | check_PROGRAMS = $(TESTS)
|
---|
20 | noinst_PROGRAMS = $(TESTS)
|
---|
21 |
|
---|
22 | BOOST_LIB = $(BOOST_LDFLAGS) $(BOOST_MPL_LIB) $(BOOST_PROGRAM_OPTIONS_LIB) $(BOOST_FILESYSTEM_LIB) $(BOOST_SYSTEM_LIB) $(BOOST_THREAD_LIB)
|
---|
23 | GSLLIBS = \
|
---|
24 | ../../LinearAlgebra/libMolecuilderLinearAlgebra-@MOLECUILDER_API_VERSION@.la \
|
---|
25 | ../../Exceptions/libMolecuilderExceptions-@MOLECUILDER_API_VERSION@.la \
|
---|
26 | ../../Helpers/libMolecuilderHelpers-@MOLECUILDER_API_VERSION@.la \
|
---|
27 | $(BOOST_LIB)
|
---|
28 |
|
---|
29 | LinearSystemOfEquationsUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \
|
---|
30 | LinearSystemOfEquationsUnitTest.cpp \
|
---|
31 | LinearSystemOfEquationsUnitTest.hpp
|
---|
32 | LinearSystemOfEquationsUnitTest_LDADD = ${GSLLIBS}
|
---|
33 |
|
---|
34 | LineUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \
|
---|
35 | LineUnitTest.cpp \
|
---|
36 | LineUnitTest.hpp
|
---|
37 | LineUnitTest_LDADD = ${GSLLIBS}
|
---|
38 |
|
---|
39 | MatrixContentSymmetricUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \
|
---|
40 | MatrixContentSymmetricUnitTest.cpp \
|
---|
41 | MatrixContentSymmetricUnitTest.hpp
|
---|
42 | MatrixContentSymmetricUnitTest_LDADD = ${GSLLIBS}
|
---|
43 |
|
---|
44 | MatrixContentUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \
|
---|
45 | MatrixContentUnitTest.cpp \
|
---|
46 | MatrixContentUnitTest.hpp
|
---|
47 | MatrixContentUnitTest_LDADD = ${GSLLIBS}
|
---|
48 |
|
---|
49 | MatrixUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \
|
---|
50 | MatrixUnitTest.cpp \
|
---|
51 | MatrixUnitTest.hpp
|
---|
52 | MatrixUnitTest_LDADD = ${GSLLIBS}
|
---|
53 |
|
---|
54 | PlaneUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \
|
---|
55 | PlaneUnitTest.cpp \
|
---|
56 | PlaneUnitTest.hpp
|
---|
57 | PlaneUnitTest_LDADD = ${GSLLIBS}
|
---|
58 |
|
---|
59 |
|
---|
60 | #AUTOMAKE_OPTIONS = parallel-tests
|
---|