[3c1465] | 1 | # PLEASE adhere to the alphabetical ordering in this Makefile!
|
---|
| 2 | # Also indentation by a single tab
|
---|
| 3 |
|
---|
| 4 | POTENTIALSSPECIFICSTESTSSOURCES = \
|
---|
[ffc368] | 5 | ../Potentials/Specifics/unittests/ManyBodyPotential_TersoffUnitTest.cpp \
|
---|
[c92c0d] | 6 | ../Potentials/Specifics/unittests/PairPotential_AngleUnitTest.cpp \
|
---|
[76cbd0] | 7 | ../Potentials/Specifics/unittests/PairPotential_HarmonicUnitTest.cpp \
|
---|
| 8 | ../Potentials/Specifics/unittests/PairPotential_MorseUnitTest.cpp
|
---|
[3c1465] | 9 |
|
---|
| 10 | POTENTIALSSPECIFICSTESTSHEADERS = \
|
---|
[ffc368] | 11 | ../Potentials/Specifics/unittests/ManyBodyPotential_TersoffUnitTest.hpp \
|
---|
[c92c0d] | 12 | ../Potentials/Specifics/unittests/PairPotential_AngleUnitTest.hpp \
|
---|
[76cbd0] | 13 | ../Potentials/Specifics/unittests/PairPotential_HarmonicUnitTest.hpp \
|
---|
| 14 | ../Potentials/Specifics/unittests/PairPotential_MorseUnitTest.hpp
|
---|
[3c1465] | 15 |
|
---|
| 16 | POTENTIALSSPECIFICSTESTS = \
|
---|
[ffc368] | 17 | ManyBodyPotential_TersoffUnitTest \
|
---|
[c92c0d] | 18 | PairPotential_AngleUnitTest \
|
---|
[76cbd0] | 19 | PairPotential_HarmonicUnitTest \
|
---|
| 20 | PairPotential_MorseUnitTest
|
---|
[3c1465] | 21 |
|
---|
| 22 | TESTS += $(POTENTIALSSPECIFICSTESTS)
|
---|
| 23 | check_PROGRAMS += $(POTENTIALSSPECIFICSTESTS)
|
---|
| 24 | noinst_PROGRAMS += $(POTENTIALSSPECIFICSTESTS)
|
---|
| 25 |
|
---|
| 26 | POTENTIALSSPECIFICSLIBS = \
|
---|
| 27 | ../libMolecuilderPotentials.la \
|
---|
[ffc368] | 28 | $(top_builddir)/LinearAlgebra/src/LinearAlgebra/libLinearAlgebra.la \
|
---|
[3c1465] | 29 | ${CodePatterns_LIBS} \
|
---|
| 30 | $(BOOST_SERIALIZATION_LDFLAGS) $(BOOST_SERIALIZATION_LIBS) \
|
---|
| 31 | $(BOOST_LIB)
|
---|
| 32 |
|
---|
[ffc368] | 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 |
|
---|
[c92c0d] | 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 |
|
---|
[3c1465] | 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 |
|
---|
[76cbd0] | 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 |
|
---|
[3c1465] | 53 |
|
---|
| 54 | #AUTOMAKE_OPTIONS = parallel-tests
|
---|