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 = ${CodePatterns_LIBS} $(CPPUNIT_LIBS) -ldl
|
---|
7 | AM_CPPFLAGS = ${BOOST_CPPFLAGS} $(CPPUNIT_CFLAGS) ${CodePatterns_CFLAGS}
|
---|
8 |
|
---|
9 | TESTS = \
|
---|
10 | LinearSystemOfEquationsUnitTest \
|
---|
11 | LineUnitTest \
|
---|
12 | MatrixContentSymmetricUnitTest \
|
---|
13 | MatrixContentUnitTest \
|
---|
14 | MatrixUnitTest \
|
---|
15 | PlaneUnitTest \
|
---|
16 | VectorContentUnitTest \
|
---|
17 | VectorUnitTest
|
---|
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 = \
|
---|
25 | ../../LinearAlgebra/libMolecuilderLinearAlgebra.la \
|
---|
26 | ../../Exceptions/libMolecuilderExceptions.la \
|
---|
27 | ${CodePatterns_LIBS} \
|
---|
28 | $(BOOST_LIB)
|
---|
29 |
|
---|
30 | LinearSystemOfEquationsUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \
|
---|
31 | LinearSystemOfEquationsUnitTest.cpp \
|
---|
32 | LinearSystemOfEquationsUnitTest.hpp
|
---|
33 | LinearSystemOfEquationsUnitTest_LDADD = ${GSLLIBS}
|
---|
34 |
|
---|
35 | LineUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \
|
---|
36 | LineUnitTest.cpp \
|
---|
37 | LineUnitTest.hpp
|
---|
38 | LineUnitTest_LDADD = ${GSLLIBS}
|
---|
39 |
|
---|
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 |
|
---|
55 | PlaneUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \
|
---|
56 | PlaneUnitTest.cpp \
|
---|
57 | PlaneUnitTest.hpp
|
---|
58 | PlaneUnitTest_LDADD = ${GSLLIBS}
|
---|
59 |
|
---|
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 |
|
---|
70 |
|
---|
71 | #AUTOMAKE_OPTIONS = parallel-tests
|
---|