| 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 | $(top_builddir)/LinearAlgebra/src/LinearAlgebra/libLinearAlgebra.la \
|
|---|
| 29 | ${CodePatterns_LIBS} \
|
|---|
| 30 | $(BOOST_SERIALIZATION_LDFLAGS) $(BOOST_SERIALIZATION_LIBS) \
|
|---|
| 31 | $(BOOST_LIB)
|
|---|
| 32 |
|
|---|
| 33 | ManyBodyPotential_TersoffUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \
|
|---|
| 34 | ../Potentials/Specifics/unittests/ManyBodyPotential_TersoffUnitTest.cpp \
|
|---|
| 35 | ../Potentials/Specifics/unittests/ManyBodyPotential_TersoffUnitTest.hpp
|
|---|
| 36 | ManyBodyPotential_TersoffUnitTest_LDADD = ${POTENTIALSSPECIFICSLIBS}
|
|---|
| 37 |
|
|---|
| 38 | PairPotential_AngleUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \
|
|---|
| 39 | ../Potentials/Specifics/unittests/PairPotential_AngleUnitTest.cpp \
|
|---|
| 40 | ../Potentials/Specifics/unittests/PairPotential_AngleUnitTest.hpp
|
|---|
| 41 | PairPotential_AngleUnitTest_LDADD = ${POTENTIALSSPECIFICSLIBS}
|
|---|
| 42 |
|
|---|
| 43 | PairPotential_HarmonicUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \
|
|---|
| 44 | ../Potentials/Specifics/unittests/PairPotential_HarmonicUnitTest.cpp \
|
|---|
| 45 | ../Potentials/Specifics/unittests/PairPotential_HarmonicUnitTest.hpp
|
|---|
| 46 | PairPotential_HarmonicUnitTest_LDADD = ${POTENTIALSSPECIFICSLIBS}
|
|---|
| 47 |
|
|---|
| 48 | PairPotential_MorseUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \
|
|---|
| 49 | ../Potentials/Specifics/unittests/PairPotential_MorseUnitTest.cpp \
|
|---|
| 50 | ../Potentials/Specifics/unittests/PairPotential_MorseUnitTest.hpp
|
|---|
| 51 | PairPotential_MorseUnitTest_LDADD = ${POTENTIALSSPECIFICSLIBS}
|
|---|
| 52 |
|
|---|
| 53 |
|
|---|
| 54 | #AUTOMAKE_OPTIONS = parallel-tests
|
|---|