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