# PLEASE adhere to the alphabetical ordering in this Makefile! # Also indentation by a single tab POTENTIALSTESTSSOURCES = \ ../Potentials/unittests/CompoundPotentialUnitTest.cpp \ ../Potentials/unittests/PartialNucleiChargeFitterUnitTest.cpp \ ../Potentials/unittests/SerializablePotentialUnitTest.cpp POTENTIALSTESTSHEADERS = \ ../Potentials/unittests/CompoundPotentialUnitTest.hpp \ ../Potentials/unittests/PartialNucleiChargeFitterUnitTest.hpp \ ../Potentials/unittests/SerializablePotentialUnitTest.hpp POTENTIALSTESTS = \ CompoundPotentialUnitTest \ PartialNucleiChargeFitterUnitTest \ SerializablePotentialUnitTest TESTS += $(POTENTIALSTESTS) check_PROGRAMS += $(POTENTIALSTESTS) noinst_PROGRAMS += $(POTENTIALSTESTS) POTENTIALSLIBS = \ libUnitTest.la \ ../libMolecuilder.la \ ../libMolecuilderPotentials.la \ $(top_builddir)/LinearAlgebra/src/LinearAlgebra/libLinearAlgebra.la \ ${CodePatterns_LIBS} \ $(BOOST_SERIALIZATION_LDFLAGS) $(BOOST_SERIALIZATION_LIBS) \ $(BOOST_LIB) CompoundPotentialUnitTest_SOURCES = \ ../Potentials/unittests/CompoundPotentialUnitTest.cpp \ ../Potentials/unittests/CompoundPotentialUnitTest.hpp CompoundPotentialUnitTest_LDADD = \ libUnitTest.la \ ../libMolecuilderPotentials.la \ ../libMolecuilderFragmentation.la \ ../libMolecuilderFunctionApproximation.la \ ../libMolecuilderFragmentationSummation.la \ ../libMolecuilderFragmentation_getFromKeysetStub.la \ ../libMolecuilderRandomNumbers.la \ $(top_builddir)/LinearAlgebra/src/LinearAlgebra/libLinearAlgebra.la \ ${CodePatterns_LIBS} \ $(BOOST_SERIALIZATION_LDFLAGS) $(BOOST_SERIALIZATION_LIBS) \ $(BOOST_LIB) PartialNucleiChargeFitterUnitTest_SOURCES = \ ../Potentials/unittests/PartialNucleiChargeFitterUnitTest.cpp \ ../Potentials/unittests/PartialNucleiChargeFitterUnitTest.hpp PartialNucleiChargeFitterUnitTest_LDADD = \ ../libMolecuilderFragmentationSummation.la \ ${POTENTIALSLIBS} SerializablePotentialUnitTest_SOURCES = \ ../Potentials/unittests/SerializablePotentialUnitTest.cpp \ ../Potentials/unittests/SerializablePotentialUnitTest.hpp \ ../Potentials/unittests/stubs/SerializablePotentialMock.cpp \ ../Potentials/unittests/stubs/SerializablePotentialMock.hpp SerializablePotentialUnitTest_LDADD = ${POTENTIALSLIBS} MOSTLYCLEANFILES += \ potential.csv \ residuum.csv \ solution.csv #AUTOMAKE_OPTIONS = parallel-tests