# PLEASE adhere to the alphabetical ordering in this Makefile! # Also indentation by a single tab POTENTIALSSPECIFICSTESTSSOURCES = \ ../Potentials/Specifics/unittests/ManyBodyPotential_TersoffUnitTest.cpp \ ../Potentials/Specifics/unittests/PairPotential_AngleUnitTest.cpp \ ../Potentials/Specifics/unittests/PairPotential_HarmonicUnitTest.cpp \ ../Potentials/Specifics/unittests/PairPotential_MorseUnitTest.cpp POTENTIALSSPECIFICSTESTSHEADERS = \ ../Potentials/Specifics/unittests/ManyBodyPotential_TersoffUnitTest.hpp \ ../Potentials/Specifics/unittests/PairPotential_AngleUnitTest.hpp \ ../Potentials/Specifics/unittests/PairPotential_HarmonicUnitTest.hpp \ ../Potentials/Specifics/unittests/PairPotential_MorseUnitTest.hpp POTENTIALSSPECIFICSTESTS = \ ManyBodyPotential_TersoffUnitTest \ PairPotential_AngleUnitTest \ PairPotential_HarmonicUnitTest \ PairPotential_MorseUnitTest TESTS += $(POTENTIALSSPECIFICSTESTS) check_PROGRAMS += $(POTENTIALSSPECIFICSTESTS) noinst_PROGRAMS += $(POTENTIALSSPECIFICSTESTS) POTENTIALSSPECIFICSLIBS = \ ../libMolecuilderPotentials.la \ $(top_builddir)/LinearAlgebra/src/LinearAlgebra/libLinearAlgebra.la \ ${CodePatterns_LIBS} \ $(BOOST_SERIALIZATION_LDFLAGS) $(BOOST_SERIALIZATION_LIBS) \ $(BOOST_LIB) ManyBodyPotential_TersoffUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \ ../Potentials/Specifics/unittests/ManyBodyPotential_TersoffUnitTest.cpp \ ../Potentials/Specifics/unittests/ManyBodyPotential_TersoffUnitTest.hpp ManyBodyPotential_TersoffUnitTest_LDADD = ${POTENTIALSSPECIFICSLIBS} PairPotential_AngleUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \ ../Potentials/Specifics/unittests/PairPotential_AngleUnitTest.cpp \ ../Potentials/Specifics/unittests/PairPotential_AngleUnitTest.hpp PairPotential_AngleUnitTest_LDADD = ${POTENTIALSSPECIFICSLIBS} PairPotential_HarmonicUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \ ../Potentials/Specifics/unittests/PairPotential_HarmonicUnitTest.cpp \ ../Potentials/Specifics/unittests/PairPotential_HarmonicUnitTest.hpp PairPotential_HarmonicUnitTest_LDADD = ${POTENTIALSSPECIFICSLIBS} PairPotential_MorseUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \ ../Potentials/Specifics/unittests/PairPotential_MorseUnitTest.cpp \ ../Potentials/Specifics/unittests/PairPotential_MorseUnitTest.hpp PairPotential_MorseUnitTest_LDADD = ${POTENTIALSSPECIFICSLIBS} #AUTOMAKE_OPTIONS = parallel-tests