1 | # PLEASE adhere to the alphabetical ordering in this Makefile!
|
---|
2 | # Also indentation by a single tab
|
---|
3 |
|
---|
4 | FUNCTIONAPPROXIMATIONTESTSSOURCES = \
|
---|
5 | ../FunctionApproximation/unittests/ExtractorsUnitTest.cpp \
|
---|
6 | ../FunctionApproximation/unittests/FunctionArgumentUnitTest.cpp
|
---|
7 |
|
---|
8 | FUNCTIONAPPROXIMATIONTESTSHEADERS = \
|
---|
9 | ../FunctionApproximation/unittests/ExtractorsUnitTest.hpp \
|
---|
10 | ../FunctionApproximation/unittests/FunctionArgumentUnitTest.hpp
|
---|
11 |
|
---|
12 | FUNCTIONAPPROXIMATIONTESTS = \
|
---|
13 | ExtractorsUnitTest \
|
---|
14 | FunctionArgumentUnitTest
|
---|
15 |
|
---|
16 | TESTS += $(FUNCTIONAPPROXIMATIONTESTS)
|
---|
17 | check_PROGRAMS += $(FUNCTIONAPPROXIMATIONTESTS)
|
---|
18 | noinst_PROGRAMS += $(FUNCTIONAPPROXIMATIONTESTS)
|
---|
19 |
|
---|
20 | FUNCTIONAPPROXIMATIONLIBS = \
|
---|
21 | ../libMolecuilderFunctionApproximation.la \
|
---|
22 | $(top_builddir)/LinearAlgebra/src/LinearAlgebra/libLinearAlgebra.la \
|
---|
23 | ${CodePatterns_LIBS} \
|
---|
24 | $(BOOST_SERIALIZATION_LDFLAGS) $(BOOST_SERIALIZATION_LIBS) \
|
---|
25 | $(BOOST_LIB)
|
---|
26 |
|
---|
27 | ExtractorsUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \
|
---|
28 | ../FunctionApproximation/unittests/ExtractorsUnitTest.cpp \
|
---|
29 | ../FunctionApproximation/unittests/ExtractorsUnitTest.hpp
|
---|
30 | ExtractorsUnitTest_LDADD = \
|
---|
31 | ../libMolecuilderFragmentationSetValues.la \
|
---|
32 | ${FUNCTIONAPPROXIMATIONLIBS}
|
---|
33 |
|
---|
34 | FunctionArgumentUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \
|
---|
35 | ../FunctionApproximation/unittests/FunctionArgumentUnitTest.cpp \
|
---|
36 | ../FunctionApproximation/unittests/FunctionArgumentUnitTest.hpp
|
---|
37 | FunctionArgumentUnitTest_LDADD = ${FUNCTIONAPPROXIMATIONLIBS}
|
---|
38 |
|
---|
39 |
|
---|
40 | #AUTOMAKE_OPTIONS = parallel-tests
|
---|