[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 \
|
---|
[ffc368] | 6 | ../Potentials/Specifics/unittests/ManyBodyPotential_TersoffUnitTest.cpp \
|
---|
[c92c0d] | 7 | ../Potentials/Specifics/unittests/PairPotential_AngleUnitTest.cpp \
|
---|
[76cbd0] | 8 | ../Potentials/Specifics/unittests/PairPotential_HarmonicUnitTest.cpp \
|
---|
| 9 | ../Potentials/Specifics/unittests/PairPotential_MorseUnitTest.cpp
|
---|
[3c1465] | 10 |
|
---|
| 11 | POTENTIALSSPECIFICSTESTSHEADERS = \
|
---|
[8203ce8] | 12 | ../Potentials/Specifics/unittests/ConstantPotentialUnitTest.hpp \
|
---|
[ffc368] | 13 | ../Potentials/Specifics/unittests/ManyBodyPotential_TersoffUnitTest.hpp \
|
---|
[c92c0d] | 14 | ../Potentials/Specifics/unittests/PairPotential_AngleUnitTest.hpp \
|
---|
[76cbd0] | 15 | ../Potentials/Specifics/unittests/PairPotential_HarmonicUnitTest.hpp \
|
---|
| 16 | ../Potentials/Specifics/unittests/PairPotential_MorseUnitTest.hpp
|
---|
[3c1465] | 17 |
|
---|
| 18 | POTENTIALSSPECIFICSTESTS = \
|
---|
[8203ce8] | 19 | ConstantPotentialUnitTest \
|
---|
[ffc368] | 20 | ManyBodyPotential_TersoffUnitTest \
|
---|
[c92c0d] | 21 | PairPotential_AngleUnitTest \
|
---|
[76cbd0] | 22 | PairPotential_HarmonicUnitTest \
|
---|
| 23 | PairPotential_MorseUnitTest
|
---|
[3c1465] | 24 |
|
---|
| 25 | TESTS += $(POTENTIALSSPECIFICSTESTS)
|
---|
| 26 | check_PROGRAMS += $(POTENTIALSSPECIFICSTESTS)
|
---|
| 27 | noinst_PROGRAMS += $(POTENTIALSSPECIFICSTESTS)
|
---|
| 28 |
|
---|
| 29 | POTENTIALSSPECIFICSLIBS = \
|
---|
| 30 | ../libMolecuilderPotentials.la \
|
---|
[7b019a] | 31 | ../libMolecuilderFragmentationSetValues.la \
|
---|
[d52819] | 32 | ../libMolecuilderFragmentation.la \
|
---|
[7b019a] | 33 | ../libMolecuilderFunctionApproximation.la \
|
---|
[ffc368] | 34 | $(top_builddir)/LinearAlgebra/src/LinearAlgebra/libLinearAlgebra.la \
|
---|
[3c1465] | 35 | ${CodePatterns_LIBS} \
|
---|
[7b019a] | 36 | $(BOOST_SERIALIZATION_LDFLAGS) $(BOOST_SERIALIZATION_LIBS) \
|
---|
[3c1465] | 37 | $(BOOST_LIB)
|
---|
| 38 |
|
---|
[8203ce8] | 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 |
|
---|
[ffc368] | 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 |
|
---|
[c92c0d] | 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 |
|
---|
[3c1465] | 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 |
|
---|
[76cbd0] | 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 |
|
---|
[3c1465] | 64 |
|
---|
| 65 | #AUTOMAKE_OPTIONS = parallel-tests
|
---|