[3c1465] | 1 | # PLEASE adhere to the alphabetical ordering in this Makefile!
|
---|
| 2 | # Also indentation by a single tab
|
---|
| 3 |
|
---|
| 4 | POTENTIALSSPECIFICSTESTSSOURCES = \
|
---|
[8203ce8] | 5 | ../Potentials/Specifics/unittests/ConstantPotentialUnitTest.cpp \
|
---|
[e2037e] | 6 | ../Potentials/Specifics/unittests/FourBodyPotential_TorsionUnitTest.cpp \
|
---|
[ffc368] | 7 | ../Potentials/Specifics/unittests/ManyBodyPotential_TersoffUnitTest.cpp \
|
---|
[76cbd0] | 8 | ../Potentials/Specifics/unittests/PairPotential_HarmonicUnitTest.cpp \
|
---|
[1413f4] | 9 | ../Potentials/Specifics/unittests/PairPotential_LennardJonesUnitTest.cpp \
|
---|
[484e2a] | 10 | ../Potentials/Specifics/unittests/PairPotential_MorseUnitTest.cpp \
|
---|
| 11 | ../Potentials/Specifics/unittests/ThreeBodyPotential_AngleUnitTest.cpp
|
---|
[3c1465] | 12 |
|
---|
| 13 | POTENTIALSSPECIFICSTESTSHEADERS = \
|
---|
[8203ce8] | 14 | ../Potentials/Specifics/unittests/ConstantPotentialUnitTest.hpp \
|
---|
[e2037e] | 15 | ../Potentials/Specifics/unittests/FourBodyPotential_TorsionUnitTest.hpp \
|
---|
[ffc368] | 16 | ../Potentials/Specifics/unittests/ManyBodyPotential_TersoffUnitTest.hpp \
|
---|
[76cbd0] | 17 | ../Potentials/Specifics/unittests/PairPotential_HarmonicUnitTest.hpp \
|
---|
[1413f4] | 18 | ../Potentials/Specifics/unittests/PairPotential_LennardJonesUnitTest.hpp \
|
---|
[484e2a] | 19 | ../Potentials/Specifics/unittests/PairPotential_MorseUnitTest.hpp \
|
---|
| 20 | ../Potentials/Specifics/unittests/ThreeBodyPotential_AngleUnitTest.hpp
|
---|
[3c1465] | 21 |
|
---|
| 22 | POTENTIALSSPECIFICSTESTS = \
|
---|
[8203ce8] | 23 | ConstantPotentialUnitTest \
|
---|
[e2037e] | 24 | FourBodyPotential_TorsionUnitTest \
|
---|
[ffc368] | 25 | ManyBodyPotential_TersoffUnitTest \
|
---|
[76cbd0] | 26 | PairPotential_HarmonicUnitTest \
|
---|
[1413f4] | 27 | PairPotential_LennardJonesUnitTest \
|
---|
[484e2a] | 28 | PairPotential_MorseUnitTest \
|
---|
| 29 | ThreeBodyPotential_AngleUnitTest
|
---|
[3c1465] | 30 |
|
---|
| 31 | TESTS += $(POTENTIALSSPECIFICSTESTS)
|
---|
| 32 | check_PROGRAMS += $(POTENTIALSSPECIFICSTESTS)
|
---|
| 33 | noinst_PROGRAMS += $(POTENTIALSSPECIFICSTESTS)
|
---|
| 34 |
|
---|
| 35 | POTENTIALSSPECIFICSLIBS = \
|
---|
| 36 | ../libMolecuilderPotentials.la \
|
---|
[7b019a] | 37 | ../libMolecuilderFragmentationSetValues.la \
|
---|
[d52819] | 38 | ../libMolecuilderFragmentation.la \
|
---|
[7b019a] | 39 | ../libMolecuilderFunctionApproximation.la \
|
---|
[ffc368] | 40 | $(top_builddir)/LinearAlgebra/src/LinearAlgebra/libLinearAlgebra.la \
|
---|
[3c1465] | 41 | ${CodePatterns_LIBS} \
|
---|
[7b019a] | 42 | $(BOOST_SERIALIZATION_LDFLAGS) $(BOOST_SERIALIZATION_LIBS) \
|
---|
[3c1465] | 43 | $(BOOST_LIB)
|
---|
| 44 |
|
---|
[8203ce8] | 45 | ConstantPotentialUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \
|
---|
| 46 | ../Potentials/Specifics/unittests/ConstantPotentialUnitTest.cpp \
|
---|
| 47 | ../Potentials/Specifics/unittests/ConstantPotentialUnitTest.hpp
|
---|
| 48 | ConstantPotentialUnitTest_LDADD = ${POTENTIALSSPECIFICSLIBS}
|
---|
| 49 |
|
---|
[e2037e] | 50 | FourBodyPotential_TorsionUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \
|
---|
| 51 | ../Potentials/Specifics/unittests/FourBodyPotential_TorsionUnitTest.cpp \
|
---|
| 52 | ../Potentials/Specifics/unittests/FourBodyPotential_TorsionUnitTest.hpp
|
---|
| 53 | FourBodyPotential_TorsionUnitTest_LDADD = ${POTENTIALSSPECIFICSLIBS}
|
---|
| 54 |
|
---|
[ffc368] | 55 | ManyBodyPotential_TersoffUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \
|
---|
| 56 | ../Potentials/Specifics/unittests/ManyBodyPotential_TersoffUnitTest.cpp \
|
---|
| 57 | ../Potentials/Specifics/unittests/ManyBodyPotential_TersoffUnitTest.hpp
|
---|
| 58 | ManyBodyPotential_TersoffUnitTest_LDADD = ${POTENTIALSSPECIFICSLIBS}
|
---|
| 59 |
|
---|
[3c1465] | 60 | PairPotential_HarmonicUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \
|
---|
| 61 | ../Potentials/Specifics/unittests/PairPotential_HarmonicUnitTest.cpp \
|
---|
| 62 | ../Potentials/Specifics/unittests/PairPotential_HarmonicUnitTest.hpp
|
---|
| 63 | PairPotential_HarmonicUnitTest_LDADD = ${POTENTIALSSPECIFICSLIBS}
|
---|
| 64 |
|
---|
[1413f4] | 65 | PairPotential_LennardJonesUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \
|
---|
| 66 | ../Potentials/Specifics/unittests/PairPotential_LennardJonesUnitTest.cpp \
|
---|
| 67 | ../Potentials/Specifics/unittests/PairPotential_LennardJonesUnitTest.hpp
|
---|
| 68 | PairPotential_LennardJonesUnitTest_LDADD = ${POTENTIALSSPECIFICSLIBS}
|
---|
| 69 |
|
---|
[76cbd0] | 70 | PairPotential_MorseUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \
|
---|
| 71 | ../Potentials/Specifics/unittests/PairPotential_MorseUnitTest.cpp \
|
---|
| 72 | ../Potentials/Specifics/unittests/PairPotential_MorseUnitTest.hpp
|
---|
| 73 | PairPotential_MorseUnitTest_LDADD = ${POTENTIALSSPECIFICSLIBS}
|
---|
| 74 |
|
---|
[484e2a] | 75 | ThreeBodyPotential_AngleUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \
|
---|
| 76 | ../Potentials/Specifics/unittests/ThreeBodyPotential_AngleUnitTest.cpp \
|
---|
| 77 | ../Potentials/Specifics/unittests/ThreeBodyPotential_AngleUnitTest.hpp
|
---|
| 78 | ThreeBodyPotential_AngleUnitTest_LDADD = ${POTENTIALSSPECIFICSLIBS}
|
---|
| 79 |
|
---|
[3c1465] | 80 |
|
---|
| 81 | #AUTOMAKE_OPTIONS = parallel-tests
|
---|