[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 \
|
---|
[748fc7] | 28 | ../libMolecuilder.la \
|
---|
[bf1d1b] | 29 | ../libMolecuilderFragmentationSetValues.la \
|
---|
[4694df] | 30 | ../libMolecuilderFragmentation.la \
|
---|
[fe0355] | 31 | ../libMolecuilderFragmentation_getFromKeysetStub.la \
|
---|
[4694df] | 32 | ../libMolecuilderHelpers.la \
|
---|
| 33 | ${CodePatterns_LIBS} \
|
---|
[67db80] | 34 | $(BOOST_SERIALIZATION_LDFLAGS) $(BOOST_SERIALIZATION_LIBS) \
|
---|
[4694df] | 35 | $(BOOST_LIB)
|
---|
| 36 |
|
---|
[e9e86f] | 37 | FragmentEdgeUnitTest_SOURCES = \
|
---|
[8387e0] | 38 | ../Fragmentation/Homology/unittests/FragmentEdgeUnitTest.cpp \
|
---|
| 39 | ../Fragmentation/Homology/unittests/FragmentEdgeUnitTest.hpp
|
---|
| 40 | FragmentEdgeUnitTest_LDADD = ${FRAGMENTATIONHOMOLOGYLIBS}
|
---|
| 41 |
|
---|
[e9e86f] | 42 | FragmentNodeUnitTest_SOURCES = \
|
---|
[8387e0] | 43 | ../Fragmentation/Homology/unittests/FragmentNodeUnitTest.cpp \
|
---|
| 44 | ../Fragmentation/Homology/unittests/FragmentNodeUnitTest.hpp
|
---|
| 45 | FragmentNodeUnitTest_LDADD = ${FRAGMENTATIONHOMOLOGYLIBS}
|
---|
[67db80] | 46 |
|
---|
[e9e86f] | 47 | HomologyContainerUnitTest_SOURCES = \
|
---|
[4694df] | 48 | ../Fragmentation/Homology/unittests/HomologyContainerUnitTest.cpp \
|
---|
[312c0d] | 49 | ../Fragmentation/Homology/unittests/HomologyContainerUnitTest.hpp \
|
---|
| 50 | ../Fragmentation/Homology/unittests/stubs/FragmentStub.cpp
|
---|
| 51 | HomologyContainerUnitTest_LDADD = $(FRAGMENTATIONHOMOLOGYLIBS)
|
---|
| 52 | # ../libMolecuilderUI.la \
|
---|
[cb98f1] | 53 | ../libMolecuilderJobsGrid.la \
|
---|
[4694df] | 54 | ${CodePatterns_LIBS} \
|
---|
[cb98f1] | 55 | $(BOOST_SERIALIZATION_LDFLAGS) $(BOOST_SERIALIZATION_LIBS) \
|
---|
[4694df] | 56 | $(BOOST_LIB)
|
---|
| 57 |
|
---|
[e9e86f] | 58 | HomologyGraphUnitTest_SOURCES = \
|
---|
[7b6b21f] | 59 | ../Fragmentation/Homology/unittests/HomologyGraphUnitTest.cpp \
|
---|
[fe0355] | 60 | ../Fragmentation/Homology/unittests/HomologyGraphUnitTest.hpp
|
---|
[7b6b21f] | 61 | HomologyGraphUnitTest_LDADD = ${FRAGMENTATIONHOMOLOGYLIBS}
|
---|
[4694df] | 62 |
|
---|
| 63 | #AUTOMAKE_OPTIONS = parallel-tests
|
---|