| 1 | # PLEASE adhere to the alphabetical ordering in this Makefile! | 
|---|
| 2 | # Also indentation by a single tab | 
|---|
| 3 |  | 
|---|
| 4 | FRAGMENTATIONSUMMATIONTESTSSOURCES = \ | 
|---|
| 5 | ../Fragmentation/Summation/unittests/IndexSetUnitTest.cpp \ | 
|---|
| 6 | ../Fragmentation/Summation/unittests/IndexSetContainerUnitTest.cpp \ | 
|---|
| 7 | ../Fragmentation/Summation/unittests/OrthogonalSummationUnitTest.cpp \ | 
|---|
| 8 | ../Fragmentation/Summation/unittests/SetValueUnitTest.cpp \ | 
|---|
| 9 | ../Fragmentation/Summation/unittests/SetValueMapUnitTest.cpp \ | 
|---|
| 10 | ../Fragmentation/Summation/unittests/SubsetMapUnitTest.cpp \ | 
|---|
| 11 | ../Fragmentation/Summation/unittests/SummationUnitTest.cpp | 
|---|
| 12 |  | 
|---|
| 13 | FRAGMENTATIONSUMMATIONTESTSHEADERS = \ | 
|---|
| 14 | ../Fragmentation/Summation/unittests/IndexSetUnitTest.hpp \ | 
|---|
| 15 | ../Fragmentation/Summation/unittests/IndexSetContainerUnitTest.cpp \ | 
|---|
| 16 | ../Fragmentation/Summation/unittests/OrthogonalSummationUnitTest.hpp \ | 
|---|
| 17 | ../Fragmentation/Summation/unittests/SetValueUnitTest.hpp \ | 
|---|
| 18 | ../Fragmentation/Summation/unittests/SetValueMapUnitTest.hpp \ | 
|---|
| 19 | ../Fragmentation/Summation/unittests/SubsetMapUnitTest.hpp \ | 
|---|
| 20 | ../Fragmentation/Summation/unittests/SummationUnitTest.hpp | 
|---|
| 21 |  | 
|---|
| 22 | FRAGMENTATIONSUMMATIONTESTS = \ | 
|---|
| 23 | IndexSetUnitTest \ | 
|---|
| 24 | IndexSetContainerUnitTest \ | 
|---|
| 25 | OrthogonalSummationUnitTest \ | 
|---|
| 26 | SetValueUnitTest \ | 
|---|
| 27 | SetValueMapUnitTest \ | 
|---|
| 28 | SubsetMapUnitTest \ | 
|---|
| 29 | SummationUnitTest | 
|---|
| 30 |  | 
|---|
| 31 | TESTS += $(FRAGMENTATIONSUMMATIONTESTS) | 
|---|
| 32 | check_PROGRAMS += $(FRAGMENTATIONSUMMATIONTESTS) | 
|---|
| 33 | noinst_PROGRAMS += $(FRAGMENTATIONSUMMATIONTESTS) | 
|---|
| 34 |  | 
|---|
| 35 | FRAGMENTATIONSUMMATIONLIBS = \ | 
|---|
| 36 | libUnitTest.la \ | 
|---|
| 37 | ../libMolecuilder.la \ | 
|---|
| 38 | ../libMolecuilderFragmentationSummation.la \ | 
|---|
| 39 | ${CodePatterns_LIBS} \ | 
|---|
| 40 | $(BOOST_LIB) | 
|---|
| 41 |  | 
|---|
| 42 |  | 
|---|
| 43 | IndexSetUnitTest_SOURCES = \ | 
|---|
| 44 | ../Fragmentation/Summation/unittests/IndexSetUnitTest.cpp \ | 
|---|
| 45 | ../Fragmentation/Summation/unittests/IndexSetUnitTest.hpp | 
|---|
| 46 | IndexSetUnitTest_LDADD = ${FRAGMENTATIONSUMMATIONLIBS} | 
|---|
| 47 |  | 
|---|
| 48 | IndexSetContainerUnitTest_SOURCES = \ | 
|---|
| 49 | ../Fragmentation/Summation/unittests/IndexSetContainerUnitTest.cpp \ | 
|---|
| 50 | ../Fragmentation/Summation/unittests/IndexSetContainerUnitTest.hpp | 
|---|
| 51 | IndexSetContainerUnitTest_LDADD = \ | 
|---|
| 52 | ../libMolecuilderFragmentation.la \ | 
|---|
| 53 | ../libMolecuilderFragmentation_KeysetsContainer.la \ | 
|---|
| 54 | ../libMolecuilderHelpers.la \ | 
|---|
| 55 | ${FRAGMENTATIONSUMMATIONLIBS} | 
|---|
| 56 |  | 
|---|
| 57 | OrthogonalSummationUnitTest_SOURCES = \ | 
|---|
| 58 | ../Fragmentation/Summation/unittests/OrthogonalSummationUnitTest.cpp \ | 
|---|
| 59 | ../Fragmentation/Summation/unittests/OrthogonalSummationUnitTest.hpp \ | 
|---|
| 60 | ../Fragmentation/Summation/OrthogonalSummation.hpp \ | 
|---|
| 61 | ../Fragmentation/Summation/OrthogonalSummation_impl.hpp | 
|---|
| 62 | OrthogonalSummationUnitTest_LDADD = ${FRAGMENTATIONSUMMATIONLIBS} | 
|---|
| 63 |  | 
|---|
| 64 | SetValueUnitTest_SOURCES = \ | 
|---|
| 65 | ../Fragmentation/Summation/unittests/SetValueUnitTest.cpp \ | 
|---|
| 66 | ../Fragmentation/Summation/unittests/SetValueUnitTest.hpp \ | 
|---|
| 67 | ../Fragmentation/Summation/unittests/stubs/SetValueMap_Mock.hpp \ | 
|---|
| 68 | ../Fragmentation/Summation/unittests/stubs/SubsetMap_Mock.hpp | 
|---|
| 69 | SetValueUnitTest_LDADD = ${FRAGMENTATIONSUMMATIONLIBS} | 
|---|
| 70 |  | 
|---|
| 71 | SetValueMapUnitTest_SOURCES = \ | 
|---|
| 72 | ../Fragmentation/Summation/unittests/SetValueMapUnitTest.cpp \ | 
|---|
| 73 | ../Fragmentation/Summation/unittests/SetValueMapUnitTest.hpp | 
|---|
| 74 | SetValueMapUnitTest_LDADD = ${FRAGMENTATIONSUMMATIONLIBS} | 
|---|
| 75 |  | 
|---|
| 76 | SubsetMapUnitTest_SOURCES = \ | 
|---|
| 77 | ../Fragmentation/Summation/unittests/SubsetMapUnitTest.cpp \ | 
|---|
| 78 | ../Fragmentation/Summation/unittests/SubsetMapUnitTest.hpp | 
|---|
| 79 | SubsetMapUnitTest_LDADD = ${FRAGMENTATIONSUMMATIONLIBS} | 
|---|
| 80 |  | 
|---|
| 81 | SummationUnitTest_SOURCES = \ | 
|---|
| 82 | ../Fragmentation/Summation/unittests/SummationUnitTest.cpp \ | 
|---|
| 83 | ../Fragmentation/Summation/unittests/SummationUnitTest.hpp \ | 
|---|
| 84 | ../Fragmentation/Summation/Summation.hpp \ | 
|---|
| 85 | ../Fragmentation/Summation/Summation_impl.hpp | 
|---|
| 86 | SummationUnitTest_LDADD = ${FRAGMENTATIONSUMMATIONLIBS} | 
|---|
| 87 |  | 
|---|
| 88 |  | 
|---|
| 89 | #AUTOMAKE_OPTIONS = parallel-tests | 
|---|