# PLEASE adhere to the alphabetical ordering in this Makefile! # Also indentation by a single tab INCLUDES=-I$(top_srcdir)/src -I$(top_srcdir)/src/Fragmenation -I$(top_srcdir)/src/Fragmenation/Summation AM_LDFLAGS = ${CodePatterns_LIBS} $(CPPUNIT_LIBS) -ldl AM_CPPFLAGS = ${BOOST_CPPFLAGS} $(CPPUNIT_CFLAGS) ${CodePatterns_CFLAGS} FRAGMENTATIONSUMMATIONTESTSSOURCES = \ ../Fragmentation/unittests/IndexSetUnitTest.cpp \ ../Fragmentation/unittests/IndexSetContainerUnitTest.cpp \ ../Fragmentation/unittests/OrthogonalSummationUnitTest.cpp \ ../Fragmentation/unittests/SetValueUnitTest.cpp \ ../Fragmentation/unittests/SetValueMapUnitTest.cpp \ ../Fragmentation/unittests/SubsetMapUnitTest.cpp FRAGMENTATIONSUMMATIONTESTSHEADERS = \ ../Fragmentation/unittests/IndexSetUnitTest.hpp \ ../Fragmentation/unittests/IndexSetContainerUnitTest.cpp \ ../Fragmentation/unittests/OrthogonalSummationUnitTest.hpp \ ../Fragmentation/unittests/SetValueUnitTest.hpp \ ../Fragmentation/unittests/SetValueMapUnitTest.hpp \ ../Fragmentation/unittests/SubsetMapUnitTest.hpp FRAGMENTATIONSUMMATIONTESTS = \ IndexSetUnitTest \ IndexSetContainerUnitTest \ OrthogonalSummationUnitTest \ SetValueUnitTest \ SetValueMapUnitTest \ SubsetMapUnitTest TESTS += $(FRAGMENTATIONSUMMATIONTESTS) check_PROGRAMS += $(FRAGMENTATIONSUMMATIONTESTS) noinst_PROGRAMS += $(FRAGMENTATIONSUMMATIONTESTS) FRAGMENTATIONSUMMATIONLIBS = \ libMolecuilderFragmentationSummation.la \ ${CodePatterns_LIBS} \ $(BOOST_LIB) IndexSetUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \ unittests/IndexSetUnitTest.cpp \ unittests/IndexSetUnitTest.hpp IndexSetUnitTest_LDADD = ${FRAGMENTATIONSUMMATIONLIBS} IndexSetContainerUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \ unittests/IndexSetContainerUnitTest.cpp \ unittests/IndexSetContainerUnitTest.hpp \ IndexSet.cpp \ IndexSet.hpp \ IndexSetContainer.hpp \ SortedVector.hpp IndexSetContainerUnitTest_LDADD = ${FRAGMENTATIONSUMMATIONLIBS} OrthogonalSummationUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \ unittests/OrthogonalSummationUnitTest.cpp \ unittests/OrthogonalSummationUnitTest.hpp \ OrthogonalSummation.hpp \ OrthogonalSummation_impl.hpp \ IndexSet.cpp \ IndexSet.hpp \ IndexSetContainer.hpp \ SortedVector.hpp \ SubsetMap.cpp \ SubsetMap.hpp OrthogonalSummationUnitTest_LDADD = ${FRAGMENTATIONSUMMATIONLIBS} SetValueUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \ unittests/SetValueUnitTest.cpp \ unittests/SetValueUnitTest.hpp \ unittests/stubs/SetValueMap_Mock.hpp \ unittests/stubs/SubsetMap_Mock.hpp \ IndexSet.cpp \ IndexSet.hpp \ IndexSetContainer.hpp \ SetValue.hpp SetValueUnitTest_LDADD = ${FRAGMENTATIONSUMMATIONLIBS} SetValueMapUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \ unittests/SetValueMapUnitTest.cpp \ unittests/SetValueMapUnitTest.hpp \ IndexSet.cpp \ IndexSet.hpp \ SetValue.hpp \ SetValueMap.hpp SetValueMapUnitTest_LDADD = ${FRAGMENTATIONSUMMATIONLIBS} SubsetMapUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \ unittests/SubsetMapUnitTest.cpp \ unittests/SubsetMapUnitTest.hpp \ IndexSet.cpp \ IndexSet.hpp \ IndexSetContainer.hpp \ SortedVector.hpp \ SubsetMap.cpp \ SubsetMap.hpp SubsetMapUnitTest_LDADD = ${FRAGMENTATIONSUMMATIONLIBS} #AUTOMAKE_OPTIONS = parallel-tests