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