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