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_HarmonicUnitTest.cpp \
|
---|
7 | ../Potentials/Specifics/unittests/PairPotential_MorseUnitTest.cpp
|
---|
8 |
|
---|
9 | POTENTIALSSPECIFICSTESTSHEADERS = \
|
---|
10 | ../Potentials/Specifics/unittests/ManyBodyPotential_TersoffUnitTest.hpp \
|
---|
11 | ../Potentials/Specifics/unittests/PairPotential_HarmonicUnitTest.hpp \
|
---|
12 | ../Potentials/Specifics/unittests/PairPotential_MorseUnitTest.hpp
|
---|
13 |
|
---|
14 | POTENTIALSSPECIFICSTESTS = \
|
---|
15 | ManyBodyPotential_TersoffUnitTest \
|
---|
16 | PairPotential_HarmonicUnitTest \
|
---|
17 | PairPotential_MorseUnitTest
|
---|
18 |
|
---|
19 | TESTS += $(POTENTIALSSPECIFICSTESTS)
|
---|
20 | check_PROGRAMS += $(POTENTIALSSPECIFICSTESTS)
|
---|
21 | noinst_PROGRAMS += $(POTENTIALSSPECIFICSTESTS)
|
---|
22 |
|
---|
23 | POTENTIALSSPECIFICSLIBS = \
|
---|
24 | ../libMolecuilderPotentials.la \
|
---|
25 | $(top_builddir)/LinearAlgebra/src/LinearAlgebra/libLinearAlgebra.la \
|
---|
26 | ${CodePatterns_LIBS} \
|
---|
27 | $(BOOST_SERIALIZATION_LDFLAGS) $(BOOST_SERIALIZATION_LIBS) \
|
---|
28 | $(BOOST_LIB)
|
---|
29 |
|
---|
30 | ManyBodyPotential_TersoffUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \
|
---|
31 | ../Potentials/Specifics/unittests/ManyBodyPotential_TersoffUnitTest.cpp \
|
---|
32 | ../Potentials/Specifics/unittests/ManyBodyPotential_TersoffUnitTest.hpp
|
---|
33 | ManyBodyPotential_TersoffUnitTest_LDADD = ${POTENTIALSSPECIFICSLIBS}
|
---|
34 |
|
---|
35 | PairPotential_HarmonicUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \
|
---|
36 | ../Potentials/Specifics/unittests/PairPotential_HarmonicUnitTest.cpp \
|
---|
37 | ../Potentials/Specifics/unittests/PairPotential_HarmonicUnitTest.hpp
|
---|
38 | PairPotential_HarmonicUnitTest_LDADD = ${POTENTIALSSPECIFICSLIBS}
|
---|
39 |
|
---|
40 | PairPotential_MorseUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \
|
---|
41 | ../Potentials/Specifics/unittests/PairPotential_MorseUnitTest.cpp \
|
---|
42 | ../Potentials/Specifics/unittests/PairPotential_MorseUnitTest.hpp
|
---|
43 | PairPotential_MorseUnitTest_LDADD = ${POTENTIALSSPECIFICSLIBS}
|
---|
44 |
|
---|
45 |
|
---|
46 | #AUTOMAKE_OPTIONS = parallel-tests
|
---|