| 1 | # PLEASE adhere to the alphabetical ordering in this Makefile!
 | 
|---|
| 2 | # Also indentation by a single tab
 | 
|---|
| 3 | 
 | 
|---|
| 4 | FRAGMENTATIONSETVALUESTESTSSOURCES = \
 | 
|---|
| 5 |         ../Fragmentation/Summation/SetValues/unittests/EigenvaluesUnitTest.cpp \
 | 
|---|
| 6 |         ../Fragmentation/Summation/SetValues/unittests/FragmentUnitTest.cpp \
 | 
|---|
| 7 |         ../Fragmentation/Summation/SetValues/unittests/HistogramUnitTest.cpp \
 | 
|---|
| 8 |         ../Fragmentation/Summation/SetValues/unittests/IndexedVectorsUnitTest.cpp \
 | 
|---|
| 9 |         ../Fragmentation/Summation/SetValues/unittests/SamplingGridPropertiesUnitTest.cpp \
 | 
|---|
| 10 |         ../Fragmentation/Summation/SetValues/unittests/SamplingGridUnitTest.cpp
 | 
|---|
| 11 | 
 | 
|---|
| 12 | FRAGMENTATIONSETVALUESTESTSHEADERS = \
 | 
|---|
| 13 |         ../Fragmentation/Summation/SetValues/unittests/EigenvaluesUnitTest.hpp \
 | 
|---|
| 14 |         ../Fragmentation/Summation/SetValues/unittests/FragmentUnitTest.hpp \
 | 
|---|
| 15 |         ../Fragmentation/Summation/SetValues/unittests/HistogramUnitTest.hpp \
 | 
|---|
| 16 |         ../Fragmentation/Summation/SetValues/unittests/IndexedVectorsUnitTest.hpp \
 | 
|---|
| 17 |         ../Fragmentation/Summation/SetValues/unittests/SamplingGridPropertiesUnitTest.hpp \
 | 
|---|
| 18 |         ../Fragmentation/Summation/SetValues/unittests/SamplingGridUnitTest.hpp
 | 
|---|
| 19 | 
 | 
|---|
| 20 | FRAGMENTATIONSETVALUESTESTS = \
 | 
|---|
| 21 |         EigenvaluesUnitTest \
 | 
|---|
| 22 |         FragmentUnitTest \
 | 
|---|
| 23 |         HistogramUnitTest \
 | 
|---|
| 24 |         IndexedVectorsUnitTest \
 | 
|---|
| 25 |         SamplingGridPropertiesUnitTest \
 | 
|---|
| 26 |         SamplingGridUnitTest
 | 
|---|
| 27 | 
 | 
|---|
| 28 | TESTS += $(FRAGMENTATIONSETVALUESTESTS)
 | 
|---|
| 29 | check_PROGRAMS += $(FRAGMENTATIONSETVALUESTESTS) 
 | 
|---|
| 30 | noinst_PROGRAMS += $(FRAGMENTATIONSETVALUESTESTS)
 | 
|---|
| 31 | 
 | 
|---|
| 32 | FRAGMENTATIONSETVALUESLIBS = \
 | 
|---|
| 33 |         libUnitTest.la \
 | 
|---|
| 34 |         ../libMolecuilder.la \
 | 
|---|
| 35 |         ../libMolecuilderFragmentationSetValues.la \
 | 
|---|
| 36 |         ${CodePatterns_LIBS} \
 | 
|---|
| 37 |         $(BOOST_LIB)
 | 
|---|
| 38 | 
 | 
|---|
| 39 | EigenvaluesUnitTest_SOURCES = \
 | 
|---|
| 40 |         ../Fragmentation/Summation/SetValues/unittests/EigenvaluesUnitTest.cpp \
 | 
|---|
| 41 |         ../Fragmentation/Summation/SetValues/unittests/EigenvaluesUnitTest.hpp
 | 
|---|
| 42 | EigenvaluesUnitTest_LDADD = \
 | 
|---|
| 43 |         ${FRAGMENTATIONSETVALUESLIBS} \
 | 
|---|
| 44 |         $(BOOST_SERIALIZATION_LDFLAGS) $(BOOST_SERIALIZATION_LIBS)
 | 
|---|
| 45 | 
 | 
|---|
| 46 | FragmentUnitTest_SOURCES = \
 | 
|---|
| 47 |         ../Fragmentation/Summation/SetValues/unittests/FragmentUnitTest.cpp \
 | 
|---|
| 48 |         ../Fragmentation/Summation/SetValues/unittests/FragmentUnitTest.hpp
 | 
|---|
| 49 | FragmentUnitTest_LDADD = \
 | 
|---|
| 50 |         ${FRAGMENTATIONSETVALUESLIBS} \
 | 
|---|
| 51 |         $(BOOST_SERIALIZATION_LDFLAGS) $(BOOST_SERIALIZATION_LIBS)
 | 
|---|
| 52 | 
 | 
|---|
| 53 | HistogramUnitTest_SOURCES = \
 | 
|---|
| 54 |         ../Fragmentation/Summation/SetValues/unittests/HistogramUnitTest.cpp \
 | 
|---|
| 55 |         ../Fragmentation/Summation/SetValues/unittests/HistogramUnitTest.hpp
 | 
|---|
| 56 | HistogramUnitTest_LDADD = ${FRAGMENTATIONSETVALUESLIBS}
 | 
|---|
| 57 | 
 | 
|---|
| 58 | IndexedVectorsUnitTest_SOURCES = \
 | 
|---|
| 59 |         ../Fragmentation/Summation/SetValues/unittests/IndexedVectorsUnitTest.cpp \
 | 
|---|
| 60 |         ../Fragmentation/Summation/SetValues/unittests/IndexedVectorsUnitTest.hpp
 | 
|---|
| 61 | IndexedVectorsUnitTest_LDADD = ${FRAGMENTATIONSETVALUESLIBS}
 | 
|---|
| 62 | 
 | 
|---|
| 63 | SamplingGridPropertiesUnitTest_SOURCES = \
 | 
|---|
| 64 |         ../Fragmentation/Summation/SetValues/unittests/SamplingGridPropertiesUnitTest.cpp \
 | 
|---|
| 65 |         ../Fragmentation/Summation/SetValues/unittests/SamplingGridPropertiesUnitTest.hpp
 | 
|---|
| 66 | SamplingGridPropertiesUnitTest_LDADD = ${FRAGMENTATIONSETVALUESLIBS}
 | 
|---|
| 67 | 
 | 
|---|
| 68 | SamplingGridUnitTest_SOURCES = \
 | 
|---|
| 69 |         ../Fragmentation/Summation/SetValues/unittests/SamplingGridUnitTest.cpp \
 | 
|---|
| 70 |         ../Fragmentation/Summation/SetValues/unittests/SamplingGridUnitTest.hpp
 | 
|---|
| 71 | SamplingGridUnitTest_LDADD = ${FRAGMENTATIONSETVALUESLIBS}
 | 
|---|
| 72 | 
 | 
|---|
| 73 | #AUTOMAKE_OPTIONS = parallel-tests
 | 
|---|