# PLEASE adhere to the alphabetical ordering in this Makefile! # Also indentation by a single tab GRAPHTESTSSOURCES = \ ../Graph/unittests/AdjacencyListUnitTest.cpp \ ../Graph/unittests/BondGraphUnitTest.cpp \ ../Graph/unittests/BoostGraphCreatorUnitTest.cpp \ ../Graph/unittests/BreadthFirstSearchGathererUnitTest.cpp GRAPHTESTSHEADERS = \ ../Graph/unittests/AdjacencyListUnitTest.hpp \ ../Graph/unittests/BondGraphUnitTest.hpp \ ../Graph/unittests/BoostGraphCreatorUnitTest.hpp \ ../Graph/unittests/BreadthFirstSearchGathererUnitTest.hpp GRAPHTESTS = \ AdjacencyListUnitTest \ BondGraphUnitTest \ BoostGraphCreatorUnitTest \ BreadthFirstSearchGathererUnitTest TESTS += $(GRAPHTESTS) check_PROGRAMS += $(GRAPHTESTS) noinst_PROGRAMS += $(GRAPHTESTS) GRAPHLIBS = \ libUnitTest.la \ ../libMolecuilderGraph.la \ ../libMolecuilder.la \ ../libMolecuilderUI.la if CONDJOBMARKET GRAPHLIBS += \ ../libMolecuilderJobs.la \ ../libMolecuilderJobs_Work.la endif GRAPHLIBS += \ $(top_builddir)/ThirdParty/LinearAlgebra/src/LinearAlgebra/libLinearAlgebra.la \ ${CodePatterns_LIBS} \ $(BOOST_LIB) AdjacencyListUnitTest_SOURCES = \ ../Graph/unittests/AdjacencyListUnitTest.cpp \ ../Graph/unittests/AdjacencyListUnitTest.hpp AdjacencyListUnitTest_LDADD = ${ALLLIBS} BondGraphUnitTest_SOURCES = \ ../Graph/unittests/BondGraphUnitTest.cpp \ ../Graph/unittests/BondGraphUnitTest.hpp BondGraphUnitTest_LDADD = ${GRAPHLIBS} BoostGraphCreatorUnitTest_SOURCES = \ ../Graph/unittests/BoostGraphCreatorUnitTest.cpp \ ../Graph/unittests/BoostGraphCreatorUnitTest.hpp BoostGraphCreatorUnitTest_LDADD = ${GRAPHLIBS} BreadthFirstSearchGathererUnitTest_SOURCES = \ ../Graph/unittests/BreadthFirstSearchGathererUnitTest.cpp \ ../Graph/unittests/BreadthFirstSearchGathererUnitTest.hpp BreadthFirstSearchGathererUnitTest_LDADD = ${GRAPHLIBS} #AUTOMAKE_OPTIONS = parallel-tests