# PLEASE adhere to the alphabetical ordering in this Makefile! # Also indentation by a single tab SUBDIRS = \ ../Actions/unittests \ ../Patterns/unittests INCLUDES = -I$(top_srcdir)/src AM_LDFLAGS = $(CPPUNIT_LIBS) -ldl AM_CXXFLAGS = $(CPPUNIT_CFLAGS) AM_CPPFLAGS = ${BOOST_CPPFLAGS} TESTS = \ AnalysisBondsUnitTests \ AnalysisCorrelationToPointUnitTest \ AnalysisCorrelationToSurfaceUnitTest \ AnalysisPairCorrelationUnitTest \ atomsCalculationTest \ AtomDescriptorTest \ BondGraphUnitTest \ BoxUnittest \ CacheableTest \ CountBondsUnitTest \ FormulaUnittest \ InfoUnitTest \ LinearSystemOfEquationsUnitTest \ LineUnittest \ LinkedCellUnitTest \ ListOfBondsUnitTest \ LogUnitTest \ manipulateAtomsTest \ MatrixContentSymmetricUnitTest \ MatrixContentUnitTest \ MatrixUnittest \ MenuDescriptionUnitTest \ MoleculeDescriptorTest \ ObserverTest \ ParserCommonUnitTest \ ParserTremoloUnitTest \ periodentafelTest \ PlaneUnittest \ Registry \ ShapeUnittest \ SubspaceFactorizerUnitTest \ TesselationUnitTest \ Tesselation_BoundaryTriangleUnitTest \ Tesselation_InOutsideUnitTest \ VectorContentUnitTest \ VectorUnitTest check_PROGRAMS = $(TESTS) noinst_PROGRAMS = $(TESTS) TestRunner BOOST_LIB = $(BOOST_LDFLAGS) $(BOOST_MPL_LIB) $(BOOST_PROGRAM_OPTIONS_LIB) $(BOOST_FILESYSTEM_LIB) $(BOOST_SYSTEM_LIB) $(BOOST_THREAD_LIB) GSLLIBS = \ ../LinearAlgebra/libMolecuilderLinearAlgebra-@MOLECUILDER_API_VERSION@.la \ ../Exceptions/libMolecuilderExceptions-@MOLECUILDER_API_VERSION@.la \ ../Helpers/libMolecuilderHelpers-@MOLECUILDER_API_VERSION@.la \ $(BOOST_LIB) ALLLIBS = \ ../UIElements/libMolecuilderUI-@MOLECUILDER_API_VERSION@.la \ ../Actions/libMolecuilderActions-@MOLECUILDER_API_VERSION@.la \ ${PARSERLIBS} \ ../libMolecuilder-@MOLECUILDER_API_VERSION@.la \ ${GSLLIBS} PARSERLIBS = ../Parser/libMolecuilderParser-@MOLECUILDER_API_VERSION@.la UILIBS = ../UIElements/libMolecuilderUI-@MOLECUILDER_API_VERSION@.la TESTSOURCES = \ ../Actions/unittests/ActionRegistryUnitTest.cpp \ ../Actions/unittests/ActionSequenceUnitTest.cpp \ analysisbondsunittest.cpp \ AnalysisCorrelationToPointUnitTest.cpp \ AnalysisCorrelationToSurfaceUnitTest.cpp \ AnalysisPairCorrelationUnitTest.cpp \ AtomDescriptorTest.cpp \ atomsCalculationTest.cpp \ bondgraphunittest.cpp \ BoxUnittest.cpp \ CacheableTest.cpp \ CountBondsUnitTest.cpp \ FormulaUnittest.cpp \ infounittest.cpp \ linearsystemofequationsunittest.cpp \ LineUnittest.cpp \ LinkedCellUnitTest.cpp \ listofbondsunittest.cpp \ logunittest.cpp \ MatrixContentSymmetricUnittest.cpp \ MatrixContentUnittest.cpp \ MatrixUnittest.cpp \ manipulateAtomsTest.cpp \ MenuDescriptionUnitTest.cpp \ MoleculeDescriptorTest.cpp \ ObserverTest.cpp \ ParserCommonUnitTest.cpp \ ParserTremoloUnitTest.cpp \ periodentafelTest.cpp \ PlaneUnittest.cpp \ RegistryUnitTest.cpp \ ShapeUnittest.cpp \ ../Patterns/unittests/SingletonUnitTest.cpp \ tesselationunittest.cpp \ tesselation_boundarytriangleunittest.cpp \ tesselation_insideoutsideunittest.cpp \ VectorContentUnittest.cpp \ vectorunittest.cpp TESTHEADERS = \ ../Actions/unittests/ActionRegistryUnitTest.hpp \ ../Actions/unittests/ActionSequenceUnitTest.hpp \ analysisbondsunittest.hpp \ AnalysisCorrelationToPointUnitTest.hpp \ AnalysisCorrelationToSurfaceUnitTest.hpp \ AnalysisPairCorrelationUnitTest.hpp \ AtomDescriptorTest.hpp \ atomsCalculationTest.hpp \ bondgraphunittest.hpp \ BoxUnittest.hpp \ CacheableTest.hpp \ CountBondsUnitTest.hpp \ FormulaUnittest.hpp \ infounittest.hpp \ linearsystemofequationsunittest.hpp \ LineUnittest.hpp \ LinkedCellUnitTest.hpp \ listofbondsunittest.hpp \ logunittest.hpp \ manipulateAtomsTest.hpp \ MatrixContentSymmetricUnittest.hpp \ MatrixContentUnittest.hpp \ MatrixUnittest.hpp \ MenuDescriptionUnitTest.hpp \ MoleculeDescriptorTest.hpp \ ObserverTest.hpp \ periodentafelTest.hpp \ ParserCommonUnitTest.hpp \ ParserTremoloUnitTest.hpp \ PlaneUnittest.hpp \ RegistryUnitTest.hpp \ ShapeUnittest.hpp \ ../Patterns/unittests/SingletonUnitTest.hpp \ stackclassunittest.hpp \ tesselationunittest.hpp \ tesselation_boundarytriangleunittest.hpp \ tesselation_insideoutsideunittest.hpp \ VectorContentUnittest.hpp \ vectorunittest.hpp AnalysisBondsUnitTests_SOURCES = UnitTestMain.cpp analysisbondsunittest.cpp analysisbondsunittest.hpp AnalysisBondsUnitTests_LDADD = ${ALLLIBS} AnalysisCorrelationToPointUnitTest_SOURCES = UnitTestMain.cpp analysis_correlation.hpp AnalysisCorrelationToPointUnitTest.cpp AnalysisCorrelationToPointUnitTest.hpp AnalysisCorrelationToPointUnitTest_LDADD = ${ALLLIBS} AnalysisCorrelationToSurfaceUnitTest_SOURCES = UnitTestMain.cpp analysis_correlation.hpp AnalysisCorrelationToSurfaceUnitTest.cpp AnalysisCorrelationToSurfaceUnitTest.hpp AnalysisCorrelationToSurfaceUnitTest_LDADD = ${ALLLIBS} AnalysisPairCorrelationUnitTest_SOURCES = UnitTestMain.cpp analysis_correlation.hpp AnalysisPairCorrelationUnitTest.cpp AnalysisPairCorrelationUnitTest.hpp AnalysisPairCorrelationUnitTest_LDADD = ${ALLLIBS} atomsCalculationTest_SOURCES = UnitTestMain.cpp atomsCalculationTest.cpp atomsCalculationTest.hpp atomsCalculationTest_LDADD = ${ALLLIBS} AtomDescriptorTest_SOURCES = UnitTestMain.cpp AtomDescriptorTest.cpp AtomDescriptorTest.hpp AtomDescriptorTest_LDADD = ${ALLLIBS} BondGraphUnitTest_SOURCES = UnitTestMain.cpp bondgraphunittest.cpp bondgraphunittest.hpp BondGraphUnitTest_LDADD = ${ALLLIBS} BoxUnittest_SOURCES = UnitTestMain.cpp BoxUnittest.cpp BoxUnittest.hpp BoxUnittest_LDADD = ${ALLLIBS} CacheableTest_SOURCES = UnitTestMain.cpp CacheableTest.cpp CacheableTest.hpp CacheableTest_LDADD = ${ALLLIBS} CountBondsUnitTest_SOURCES = UnitTestMain.cpp CountBondsUnitTest.cpp CountBondsUnitTest.hpp CountBondsUnitTest_LDADD = ${ALLLIBS} FormulaUnittest_SOURCES = UnitTestMain.cpp FormulaUnittest.cpp FormulaUnittest.hpp FormulaUnittest_LDADD = ${ALLLIBS} MatrixContentSymmetricUnitTest_SOURCES = UnitTestMain.cpp MatrixContentSymmetricUnittest.cpp MatrixContentSymmetricUnittest MatrixContentSymmetricUnitTest_LDADD = ${ALLLIBS} MatrixContentUnitTest_SOURCES = UnitTestMain.cpp MatrixContentUnittest.cpp MatrixContentUnittest.hpp MatrixContentUnitTest_LDADD = ${ALLLIBS} InfoUnitTest_SOURCES = UnitTestMain.cpp infounittest.cpp infounittest.hpp InfoUnitTest_LDADD = ${ALLLIBS} LinearSystemOfEquationsUnitTest_SOURCES = UnitTestMain.cpp linearsystemofequationsunittest.cpp linearsystemofequationsunittest.hpp LinearSystemOfEquationsUnitTest_LDADD = ${ALLLIBS} LineUnittest_SOURCES = UnitTestMain.cpp LineUnittest.cpp LineUnittest.hpp LineUnittest_LDADD = ${ALLLIBS} LinkedCellUnitTest_SOURCES = UnitTestMain.cpp LinkedCellUnitTest.cpp LinkedCellUnitTest.hpp LinkedCellUnitTest_LDADD = ${ALLLIBS} ListOfBondsUnitTest_SOURCES = UnitTestMain.cpp listofbondsunittest.cpp listofbondsunittest.hpp ListOfBondsUnitTest_LDADD = ${ALLLIBS} LogUnitTest_SOURCES = UnitTestMain.cpp logunittest.cpp logunittest.hpp LogUnitTest_LDADD = ${ALLLIBS} manipulateAtomsTest_SOURCES = UnitTestMain.cpp manipulateAtomsTest.cpp manipulateAtomsTest.hpp manipulateAtomsTest_LDADD = ${UILIBS} ${ALLLIBS} MatrixUnittest_SOURCES = UnitTestMain.cpp MatrixUnittest.cpp MatrixUnittest.hpp MatrixUnittest_LDADD = ${ALLLIBS} MenuDescriptionUnitTest_SOURCES = UnitTestMain.cpp MenuDescriptionUnitTest.cpp MenuDescriptionUnitTest.hpp MenuDescriptionUnitTest_LDADD = ${ALLLIBS} MoleculeDescriptorTest_SOURCES = UnitTestMain.cpp MoleculeDescriptorTest.cpp MoleculeDescriptorTest.hpp MoleculeDescriptorTest_LDADD = ${ALLLIBS} ObserverTest_SOURCES = UnitTestMain.cpp ObserverTest.cpp ObserverTest.hpp ObserverTest_LDADD = ${ALLLIBS} ParserCommonUnitTest_SOURCES = UnitTestMain.cpp ParserCommonUnitTest.cpp ParserCommonUnitTest.hpp ParserCommonUnitTest_LDADD = ${ALLLIBS} ParserTremoloUnitTest_SOURCES = UnitTestMain.cpp ParserTremoloUnitTest.cpp ParserTremoloUnitTest.hpp ParserTremoloUnitTest_LDADD = ${ALLLIBS} periodentafelTest_SOURCES = UnitTestMain.cpp periodentafelTest.cpp periodentafelTest.hpp periodentafelTest_LDADD = ${ALLLIBS} PlaneUnittest_SOURCES = UnitTestMain.cpp PlaneUnittest.cpp PlaneUnittest.hpp PlaneUnittest_LDADD = ${ALLLIBS} Registry_SOURCES = UnitTestMain.cpp RegistryUnitTest.cpp RegistryUnitTest.hpp Registry_LDADD = ${ALLLIBS} ShapeUnittest_SOURCES = UnitTestMain.cpp ShapeUnittest.cpp ShapeUnittest.hpp ShapeUnittest_LDADD = ${ALLLIBS} SubspaceFactorizerUnitTest_SOURCES = UnitTestMain.cpp SubspaceFactorizerUnittest.cpp SubspaceFactorizerUnittest.hpp SubspaceFactorizerUnitTest_LDADD = ${GSLLIBS} TesselationUnitTest_SOURCES = UnitTestMain.cpp tesselationunittest.cpp tesselationunittest.hpp TesselationUnitTest_LDADD = ${ALLLIBS} Tesselation_BoundaryTriangleUnitTest_SOURCES = UnitTestMain.cpp tesselation_boundarytriangleunittest.cpp tesselation_boundarytriangleunittest.hpp Tesselation_BoundaryTriangleUnitTest_LDADD = ${ALLLIBS} Tesselation_InOutsideUnitTest_SOURCES = UnitTestMain.cpp tesselation_insideoutsideunittest.cpp tesselation_insideoutsideunittest.hpp Tesselation_InOutsideUnitTest_LDADD = ${ALLLIBS} TestRunner_SOURCES = TestRunnerMain.cpp $(TESTSOURCES) $(TESTHEADERS) TestRunner_LDADD = ${UILIBS} ${ALLLIBS} VectorContentUnitTest_SOURCES = UnitTestMain.cpp VectorContentUnittest.cpp VectorContentUnittest.hpp VectorContentUnitTest_LDADD = ${ALLLIBS} VectorUnitTest_SOURCES = UnitTestMain.cpp vectorunittest.cpp vectorunittest.hpp VectorUnitTest_LDADD = ${ALLLIBS} #AUTOMAKE_OPTIONS = parallel-tests