| [355af8] | 1 | # PLEASE adhere to the alphabetical ordering in this Makefile!
 | 
|---|
 | 2 | # Also indentation by a single tab
 | 
|---|
 | 3 | 
 | 
|---|
 | 4 | FUNCTIONAPPROXIMATIONTESTSSOURCES = \
 | 
|---|
| [ac868ee] | 5 |         ../FunctionApproximation/unittests/ExtractorsUnitTest.cpp \
 | 
|---|
| [355af8] | 6 |         ../FunctionApproximation/unittests/FunctionArgumentUnitTest.cpp
 | 
|---|
 | 7 | 
 | 
|---|
 | 8 | FUNCTIONAPPROXIMATIONTESTSHEADERS = \
 | 
|---|
| [ac868ee] | 9 |         ../FunctionApproximation/unittests/ExtractorsUnitTest.hpp \
 | 
|---|
| [355af8] | 10 |         ../FunctionApproximation/unittests/FunctionArgumentUnitTest.hpp
 | 
|---|
 | 11 | 
 | 
|---|
 | 12 | FUNCTIONAPPROXIMATIONTESTS = \
 | 
|---|
| [ac868ee] | 13 |         ExtractorsUnitTest \
 | 
|---|
| [355af8] | 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 | 
 | 
|---|
| [ac868ee] | 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 | 
 | 
|---|
| [355af8] | 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
 | 
|---|