[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 \
|
---|
[791a12] | 6 | ../Potentials/Specifics/unittests/FourBodyPotential_ImproperUnitTest.cpp \
|
---|
[e2037e] | 7 | ../Potentials/Specifics/unittests/FourBodyPotential_TorsionUnitTest.cpp \
|
---|
[ffc368] | 8 | ../Potentials/Specifics/unittests/ManyBodyPotential_TersoffUnitTest.cpp \
|
---|
[76cbd0] | 9 | ../Potentials/Specifics/unittests/PairPotential_HarmonicUnitTest.cpp \
|
---|
[1413f4] | 10 | ../Potentials/Specifics/unittests/PairPotential_LennardJonesUnitTest.cpp \
|
---|
[484e2a] | 11 | ../Potentials/Specifics/unittests/PairPotential_MorseUnitTest.cpp \
|
---|
| 12 | ../Potentials/Specifics/unittests/ThreeBodyPotential_AngleUnitTest.cpp
|
---|
[3c1465] | 13 |
|
---|
| 14 | POTENTIALSSPECIFICSTESTSHEADERS = \
|
---|
[8203ce8] | 15 | ../Potentials/Specifics/unittests/ConstantPotentialUnitTest.hpp \
|
---|
[791a12] | 16 | ../Potentials/Specifics/unittests/FourBodyPotential_ImproperUnitTest.hpp \
|
---|
[e2037e] | 17 | ../Potentials/Specifics/unittests/FourBodyPotential_TorsionUnitTest.hpp \
|
---|
[ffc368] | 18 | ../Potentials/Specifics/unittests/ManyBodyPotential_TersoffUnitTest.hpp \
|
---|
[76cbd0] | 19 | ../Potentials/Specifics/unittests/PairPotential_HarmonicUnitTest.hpp \
|
---|
[1413f4] | 20 | ../Potentials/Specifics/unittests/PairPotential_LennardJonesUnitTest.hpp \
|
---|
[484e2a] | 21 | ../Potentials/Specifics/unittests/PairPotential_MorseUnitTest.hpp \
|
---|
| 22 | ../Potentials/Specifics/unittests/ThreeBodyPotential_AngleUnitTest.hpp
|
---|
[3c1465] | 23 |
|
---|
| 24 | POTENTIALSSPECIFICSTESTS = \
|
---|
[8203ce8] | 25 | ConstantPotentialUnitTest \
|
---|
[791a12] | 26 | FourBodyPotential_ImproperUnitTest \
|
---|
[e2037e] | 27 | FourBodyPotential_TorsionUnitTest \
|
---|
[ffc368] | 28 | ManyBodyPotential_TersoffUnitTest \
|
---|
[76cbd0] | 29 | PairPotential_HarmonicUnitTest \
|
---|
[1413f4] | 30 | PairPotential_LennardJonesUnitTest \
|
---|
[484e2a] | 31 | PairPotential_MorseUnitTest \
|
---|
| 32 | ThreeBodyPotential_AngleUnitTest
|
---|
[3c1465] | 33 |
|
---|
| 34 | TESTS += $(POTENTIALSSPECIFICSTESTS)
|
---|
| 35 | check_PROGRAMS += $(POTENTIALSSPECIFICSTESTS)
|
---|
| 36 | noinst_PROGRAMS += $(POTENTIALSSPECIFICSTESTS)
|
---|
| 37 |
|
---|
| 38 | POTENTIALSSPECIFICSLIBS = \
|
---|
| 39 | ../libMolecuilderPotentials.la \
|
---|
[d52819] | 40 | ../libMolecuilderFragmentation.la \
|
---|
[7b019a] | 41 | ../libMolecuilderFunctionApproximation.la \
|
---|
[0932c2] | 42 | ../libMolecuilderRandomNumbers.la \
|
---|
[16227a] | 43 | ../libMolecuilderFragmentationSummation.la \
|
---|
| 44 | ../libMolecuilderFragmentation_getFromKeysetStub.la \
|
---|
[ffc368] | 45 | $(top_builddir)/LinearAlgebra/src/LinearAlgebra/libLinearAlgebra.la \
|
---|
[3c1465] | 46 | ${CodePatterns_LIBS} \
|
---|
[7b019a] | 47 | $(BOOST_SERIALIZATION_LDFLAGS) $(BOOST_SERIALIZATION_LIBS) \
|
---|
[3c1465] | 48 | $(BOOST_LIB)
|
---|
| 49 |
|
---|
[8203ce8] | 50 | ConstantPotentialUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \
|
---|
| 51 | ../Potentials/Specifics/unittests/ConstantPotentialUnitTest.cpp \
|
---|
| 52 | ../Potentials/Specifics/unittests/ConstantPotentialUnitTest.hpp
|
---|
| 53 | ConstantPotentialUnitTest_LDADD = ${POTENTIALSSPECIFICSLIBS}
|
---|
| 54 |
|
---|
[791a12] | 55 | FourBodyPotential_ImproperUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \
|
---|
| 56 | ../Potentials/Specifics/unittests/FourBodyPotential_ImproperUnitTest.cpp \
|
---|
| 57 | ../Potentials/Specifics/unittests/FourBodyPotential_ImproperUnitTest.hpp
|
---|
| 58 | FourBodyPotential_ImproperUnitTest_LDADD = ${POTENTIALSSPECIFICSLIBS}
|
---|
| 59 |
|
---|
[e2037e] | 60 | FourBodyPotential_TorsionUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \
|
---|
| 61 | ../Potentials/Specifics/unittests/FourBodyPotential_TorsionUnitTest.cpp \
|
---|
| 62 | ../Potentials/Specifics/unittests/FourBodyPotential_TorsionUnitTest.hpp
|
---|
| 63 | FourBodyPotential_TorsionUnitTest_LDADD = ${POTENTIALSSPECIFICSLIBS}
|
---|
| 64 |
|
---|
[ffc368] | 65 | ManyBodyPotential_TersoffUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \
|
---|
| 66 | ../Potentials/Specifics/unittests/ManyBodyPotential_TersoffUnitTest.cpp \
|
---|
| 67 | ../Potentials/Specifics/unittests/ManyBodyPotential_TersoffUnitTest.hpp
|
---|
| 68 | ManyBodyPotential_TersoffUnitTest_LDADD = ${POTENTIALSSPECIFICSLIBS}
|
---|
| 69 |
|
---|
[3c1465] | 70 | PairPotential_HarmonicUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \
|
---|
| 71 | ../Potentials/Specifics/unittests/PairPotential_HarmonicUnitTest.cpp \
|
---|
| 72 | ../Potentials/Specifics/unittests/PairPotential_HarmonicUnitTest.hpp
|
---|
| 73 | PairPotential_HarmonicUnitTest_LDADD = ${POTENTIALSSPECIFICSLIBS}
|
---|
| 74 |
|
---|
[1413f4] | 75 | PairPotential_LennardJonesUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \
|
---|
| 76 | ../Potentials/Specifics/unittests/PairPotential_LennardJonesUnitTest.cpp \
|
---|
| 77 | ../Potentials/Specifics/unittests/PairPotential_LennardJonesUnitTest.hpp
|
---|
| 78 | PairPotential_LennardJonesUnitTest_LDADD = ${POTENTIALSSPECIFICSLIBS}
|
---|
| 79 |
|
---|
[76cbd0] | 80 | PairPotential_MorseUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \
|
---|
| 81 | ../Potentials/Specifics/unittests/PairPotential_MorseUnitTest.cpp \
|
---|
| 82 | ../Potentials/Specifics/unittests/PairPotential_MorseUnitTest.hpp
|
---|
| 83 | PairPotential_MorseUnitTest_LDADD = ${POTENTIALSSPECIFICSLIBS}
|
---|
| 84 |
|
---|
[484e2a] | 85 | ThreeBodyPotential_AngleUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \
|
---|
| 86 | ../Potentials/Specifics/unittests/ThreeBodyPotential_AngleUnitTest.cpp \
|
---|
| 87 | ../Potentials/Specifics/unittests/ThreeBodyPotential_AngleUnitTest.hpp
|
---|
| 88 | ThreeBodyPotential_AngleUnitTest_LDADD = ${POTENTIALSSPECIFICSLIBS}
|
---|
| 89 |
|
---|
[3c1465] | 90 |
|
---|
| 91 | #AUTOMAKE_OPTIONS = parallel-tests
|
---|