# PLEASE adhere to the alphabetical ordering in this Makefile! # Also indentation by a single tab LINKEDCELLTESTSSOURCES = \ ../LinkedCell/unittests/LinkedCellUnitTest.cpp \ ../LinkedCell/unittests/LinkedCell_ControllerUnitTest.cpp \ ../LinkedCell/unittests/LinkedCell_ModelUnitTest.cpp \ ../LinkedCell/unittests/LinkedCell_ViewUnitTest.cpp \ ../LinkedCell/unittests/linkedcellUnitTest.cpp LINKEDCELLTESTSHEADERS = \ ../LinkedCell/PointCloudAdaptor.hpp \ ../LinkedCell/unittests/LinkedCellUnitTest.hpp \ ../LinkedCell/unittests/LinkedCell_ControllerUnitTest.hpp \ ../LinkedCell/unittests/LinkedCell_ModelUnitTest.hpp \ ../LinkedCell/unittests/LinkedCell_ViewUnitTest.hpp \ ../LinkedCell/unittests/linkedcellUnitTest.hpp LINKEDCELLTESTS = \ LinkedCellUnitTest \ LinkedCell_ControllerUnitTest \ LinkedCell_ModelUnitTest \ LinkedCell_ViewUnitTest \ linkedcellUnitTest TESTS += $(LINKEDCELLTESTS) check_PROGRAMS += $(LINKEDCELLTESTS) noinst_PROGRAMS += $(LINKEDCELLTESTS) LINKEDCELLLIBS = \ $(top_builddir)/LinearAlgebra/src/LinearAlgebra/libLinearAlgebra.la \ ${CodePatterns_LIBS} \ $(BOOST_LIB) linkedcellUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \ ../LinkedCell/unittests/linkedcellUnitTest.cpp \ ../LinkedCell/unittests/linkedcellUnitTest.hpp linkedcellUnitTest_LDADD = \ ../libMolecuilderUI.la \ ../libMolecuilder.la \ $(LINKEDCELLLIBS) LinkedCellUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \ ../LinkedCell/unittests/LinkedCellUnitTest.cpp \ ../LinkedCell/unittests/LinkedCellUnitTest.hpp \ ../LinkedCell/unittests/stubs/TesselPointStub.cpp LinkedCellUnitTest_LDADD = \ ../libMolecuilderLinkedCell.la \ $(LINKEDCELLLIBS) LinkedCell_ControllerUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \ ../LinkedCell/unittests/LinkedCell_ControllerUnitTest.cpp \ ../LinkedCell/unittests/LinkedCell_ControllerUnitTest.hpp \ ../LinkedCell/unittests/defs.hpp \ ../LinkedCell/unittests/stubs/AtomStub.cpp \ ../LinkedCell/unittests/stubs/AtomObserverStub.cpp \ ../LinkedCell/unittests/stubs/ObserverBoxStub.cpp \ ../LinkedCell/unittests/stubs/TesselPointStub.cpp \ ../LinkedCell/unittests/stubs/WorldStub.cpp \ ../LinkedCell/PointCloudAdaptor.hpp \ ../Box_BoundaryConditions.cpp \ ../Box_BoundaryConditions.hpp LinkedCell_ControllerUnitTest_LDADD = \ ../libMolecuilderLinkedCell.la \ $(LINKEDCELLLIBS) LinkedCell_ModelUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \ ../LinkedCell/unittests/LinkedCell_ModelUnitTest.cpp \ ../LinkedCell/unittests/LinkedCell_ModelUnitTest.hpp \ ../LinkedCell/unittests/defs.hpp LinkedCell_ModelUnitTest_LDADD = \ ../libMolecuilderUI.la \ ../libMolecuilder.la \ $(LINKEDCELLLIBS) LinkedCell_ViewUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \ ../LinkedCell/unittests/LinkedCell_ViewUnitTest.cpp \ ../LinkedCell/unittests/LinkedCell_ViewUnitTest.hpp \ ../LinkedCell/unittests/defs.hpp \ ../LinkedCell/PointCloudAdaptor.hpp LinkedCell_ViewUnitTest_LDADD = \ ../libMolecuilderUI.la \ ../libMolecuilder.la \ $(LINKEDCELLLIBS) #AUTOMAKE_OPTIONS = parallel-tests