| 1 | # PLEASE adhere to the alphabetical ordering in this Makefile!
|
|---|
| 2 | # Also indentation by a single tab
|
|---|
| 3 |
|
|---|
| 4 | POTENTIALSSPECIFICSTESTSSOURCES = \
|
|---|
| 5 | ../Potentials/Specifics/unittests/ConstantPotentialUnitTest.cpp \
|
|---|
| 6 | ../Potentials/Specifics/unittests/ManyBodyPotential_TersoffUnitTest.cpp \
|
|---|
| 7 | ../Potentials/Specifics/unittests/PairPotential_AngleUnitTest.cpp \
|
|---|
| 8 | ../Potentials/Specifics/unittests/PairPotential_HarmonicUnitTest.cpp \
|
|---|
| 9 | ../Potentials/Specifics/unittests/PairPotential_MorseUnitTest.cpp
|
|---|
| 10 |
|
|---|
| 11 | POTENTIALSSPECIFICSTESTSHEADERS = \
|
|---|
| 12 | ../Potentials/Specifics/unittests/ConstantPotentialUnitTest.hpp \
|
|---|
| 13 | ../Potentials/Specifics/unittests/ManyBodyPotential_TersoffUnitTest.hpp \
|
|---|
| 14 | ../Potentials/Specifics/unittests/PairPotential_AngleUnitTest.hpp \
|
|---|
| 15 | ../Potentials/Specifics/unittests/PairPotential_HarmonicUnitTest.hpp \
|
|---|
| 16 | ../Potentials/Specifics/unittests/PairPotential_MorseUnitTest.hpp
|
|---|
| 17 |
|
|---|
| 18 | POTENTIALSSPECIFICSTESTS = \
|
|---|
| 19 | ConstantPotentialUnitTest \
|
|---|
| 20 | ManyBodyPotential_TersoffUnitTest \
|
|---|
| 21 | PairPotential_AngleUnitTest \
|
|---|
| 22 | PairPotential_HarmonicUnitTest \
|
|---|
| 23 | PairPotential_MorseUnitTest
|
|---|
| 24 |
|
|---|
| 25 | TESTS += $(POTENTIALSSPECIFICSTESTS)
|
|---|
| 26 | check_PROGRAMS += $(POTENTIALSSPECIFICSTESTS)
|
|---|
| 27 | noinst_PROGRAMS += $(POTENTIALSSPECIFICSTESTS)
|
|---|
| 28 |
|
|---|
| 29 | POTENTIALSSPECIFICSLIBS = \
|
|---|
| 30 | ../libMolecuilderPotentials.la \
|
|---|
| 31 | ../libMolecuilderFragmentationSetValues.la \
|
|---|
| 32 | ../libMolecuilderFragmentation.la \
|
|---|
| 33 | ../libMolecuilderFunctionApproximation.la \
|
|---|
| 34 | $(top_builddir)/LinearAlgebra/src/LinearAlgebra/libLinearAlgebra.la \
|
|---|
| 35 | ${CodePatterns_LIBS} \
|
|---|
| 36 | $(BOOST_SERIALIZATION_LDFLAGS) $(BOOST_SERIALIZATION_LIBS) \
|
|---|
| 37 | $(BOOST_LIB)
|
|---|
| 38 |
|
|---|
| 39 | ConstantPotentialUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \
|
|---|
| 40 | ../Potentials/Specifics/unittests/ConstantPotentialUnitTest.cpp \
|
|---|
| 41 | ../Potentials/Specifics/unittests/ConstantPotentialUnitTest.hpp
|
|---|
| 42 | ConstantPotentialUnitTest_LDADD = ${POTENTIALSSPECIFICSLIBS}
|
|---|
| 43 |
|
|---|
| 44 | ManyBodyPotential_TersoffUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \
|
|---|
| 45 | ../Potentials/Specifics/unittests/ManyBodyPotential_TersoffUnitTest.cpp \
|
|---|
| 46 | ../Potentials/Specifics/unittests/ManyBodyPotential_TersoffUnitTest.hpp
|
|---|
| 47 | ManyBodyPotential_TersoffUnitTest_LDADD = ${POTENTIALSSPECIFICSLIBS}
|
|---|
| 48 |
|
|---|
| 49 | PairPotential_AngleUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \
|
|---|
| 50 | ../Potentials/Specifics/unittests/PairPotential_AngleUnitTest.cpp \
|
|---|
| 51 | ../Potentials/Specifics/unittests/PairPotential_AngleUnitTest.hpp
|
|---|
| 52 | PairPotential_AngleUnitTest_LDADD = ${POTENTIALSSPECIFICSLIBS}
|
|---|
| 53 |
|
|---|
| 54 | PairPotential_HarmonicUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \
|
|---|
| 55 | ../Potentials/Specifics/unittests/PairPotential_HarmonicUnitTest.cpp \
|
|---|
| 56 | ../Potentials/Specifics/unittests/PairPotential_HarmonicUnitTest.hpp
|
|---|
| 57 | PairPotential_HarmonicUnitTest_LDADD = ${POTENTIALSSPECIFICSLIBS}
|
|---|
| 58 |
|
|---|
| 59 | PairPotential_MorseUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \
|
|---|
| 60 | ../Potentials/Specifics/unittests/PairPotential_MorseUnitTest.cpp \
|
|---|
| 61 | ../Potentials/Specifics/unittests/PairPotential_MorseUnitTest.hpp
|
|---|
| 62 | PairPotential_MorseUnitTest_LDADD = ${POTENTIALSSPECIFICSLIBS}
|
|---|
| 63 |
|
|---|
| 64 |
|
|---|
| 65 | #AUTOMAKE_OPTIONS = parallel-tests
|
|---|