[4694df] | 1 | # PLEASE adhere to the alphabetical ordering in this Makefile!
|
---|
| 2 | # Also indentation by a single tab
|
---|
| 3 |
|
---|
| 4 | FRAGMENTATIONHOMOLOGYTESTSSOURCES = \
|
---|
[8387e0] | 5 | ../Fragmentation/Homology/unittests/FragmentEdgeUnitTest.cpp \
|
---|
| 6 | ../Fragmentation/Homology/unittests/FragmentNodeUnitTest.cpp \
|
---|
[7b6b21f] | 7 | ../Fragmentation/Homology/unittests/HomologyContainerUnitTest.cpp \
|
---|
| 8 | ../Fragmentation/Homology/unittests/HomologyGraphUnitTest.cpp
|
---|
[4694df] | 9 |
|
---|
| 10 | FRAGMENTATIONHOMOLOGYTESTSHEADERS = \
|
---|
[8387e0] | 11 | ../Fragmentation/Homology/unittests/FragmentEdgeUnitTest.hpp \
|
---|
| 12 | ../Fragmentation/Homology/unittests/FragmentNodeUnitTest.hpp \
|
---|
[7b6b21f] | 13 | ../Fragmentation/Homology/unittests/HomologyContainerUnitTest.hpp \
|
---|
| 14 | ../Fragmentation/Homology/unittests/HomologyGraphUnitTest.hpp
|
---|
[4694df] | 15 |
|
---|
| 16 | FRAGMENTATIONHOMOLOGYTESTS = \
|
---|
[8387e0] | 17 | FragmentEdgeUnitTest \
|
---|
| 18 | FragmentNodeUnitTest \
|
---|
[7b6b21f] | 19 | HomologyContainerUnitTest \
|
---|
| 20 | HomologyGraphUnitTest
|
---|
[4694df] | 21 |
|
---|
| 22 | TESTS += $(FRAGMENTATIONHOMOLOGYTESTS)
|
---|
| 23 | check_PROGRAMS += $(FRAGMENTATIONHOMOLOGYTESTS)
|
---|
| 24 | noinst_PROGRAMS += $(FRAGMENTATIONHOMOLOGYTESTS)
|
---|
| 25 |
|
---|
| 26 | FRAGMENTATIONHOMOLOGYLIBS = \
|
---|
[e9e86f] | 27 | libUnitTest.la \
|
---|
[bf1d1b] | 28 | ../libMolecuilderFragmentationSetValues.la \
|
---|
[4694df] | 29 | ../libMolecuilderFragmentation.la \
|
---|
[fe0355] | 30 | ../libMolecuilderFragmentation_getFromKeysetStub.la \
|
---|
[4694df] | 31 | ../libMolecuilderHelpers.la \
|
---|
| 32 | ${CodePatterns_LIBS} \
|
---|
[67db80] | 33 | $(BOOST_SERIALIZATION_LDFLAGS) $(BOOST_SERIALIZATION_LIBS) \
|
---|
[4694df] | 34 | $(BOOST_LIB)
|
---|
| 35 |
|
---|
[e9e86f] | 36 | FragmentEdgeUnitTest_SOURCES = \
|
---|
[8387e0] | 37 | ../Fragmentation/Homology/unittests/FragmentEdgeUnitTest.cpp \
|
---|
| 38 | ../Fragmentation/Homology/unittests/FragmentEdgeUnitTest.hpp
|
---|
| 39 | FragmentEdgeUnitTest_LDADD = ${FRAGMENTATIONHOMOLOGYLIBS}
|
---|
| 40 |
|
---|
[e9e86f] | 41 | FragmentNodeUnitTest_SOURCES = \
|
---|
[8387e0] | 42 | ../Fragmentation/Homology/unittests/FragmentNodeUnitTest.cpp \
|
---|
| 43 | ../Fragmentation/Homology/unittests/FragmentNodeUnitTest.hpp
|
---|
| 44 | FragmentNodeUnitTest_LDADD = ${FRAGMENTATIONHOMOLOGYLIBS}
|
---|
[67db80] | 45 |
|
---|
[e9e86f] | 46 | HomologyContainerUnitTest_SOURCES = \
|
---|
[4694df] | 47 | ../Fragmentation/Homology/unittests/HomologyContainerUnitTest.cpp \
|
---|
[312c0d] | 48 | ../Fragmentation/Homology/unittests/HomologyContainerUnitTest.hpp \
|
---|
| 49 | ../Fragmentation/Homology/unittests/stubs/FragmentStub.cpp
|
---|
| 50 | HomologyContainerUnitTest_LDADD = $(FRAGMENTATIONHOMOLOGYLIBS)
|
---|
| 51 | # ../libMolecuilderUI.la \
|
---|
| 52 | ../libMolecuilderJobsGrid.la \
|
---|
[4694df] | 53 | ${CodePatterns_LIBS} \
|
---|
[12a24c] | 54 | $(BOOST_SERIALIZATION_LDFLAGS) $(BOOST_SERIALIZATION_LIBS) \
|
---|
[4694df] | 55 | $(BOOST_LIB)
|
---|
| 56 |
|
---|
[e9e86f] | 57 | HomologyGraphUnitTest_SOURCES = \
|
---|
[7b6b21f] | 58 | ../Fragmentation/Homology/unittests/HomologyGraphUnitTest.cpp \
|
---|
[fe0355] | 59 | ../Fragmentation/Homology/unittests/HomologyGraphUnitTest.hpp
|
---|
[7b6b21f] | 60 | HomologyGraphUnitTest_LDADD = ${FRAGMENTATIONHOMOLOGYLIBS}
|
---|
[4694df] | 61 |
|
---|
| 62 | #AUTOMAKE_OPTIONS = parallel-tests
|
---|