[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 \
|
---|
[76cbd0] | 6 | ../Potentials/Specifics/unittests/PairPotential_HarmonicUnitTest.cpp \
|
---|
| 7 | ../Potentials/Specifics/unittests/PairPotential_MorseUnitTest.cpp
|
---|
[3c1465] | 8 |
|
---|
| 9 | POTENTIALSSPECIFICSTESTSHEADERS = \
|
---|
[ffc368] | 10 | ../Potentials/Specifics/unittests/ManyBodyPotential_TersoffUnitTest.hpp \
|
---|
[76cbd0] | 11 | ../Potentials/Specifics/unittests/PairPotential_HarmonicUnitTest.hpp \
|
---|
| 12 | ../Potentials/Specifics/unittests/PairPotential_MorseUnitTest.hpp
|
---|
[3c1465] | 13 |
|
---|
| 14 | POTENTIALSSPECIFICSTESTS = \
|
---|
[ffc368] | 15 | ManyBodyPotential_TersoffUnitTest \
|
---|
[76cbd0] | 16 | PairPotential_HarmonicUnitTest \
|
---|
| 17 | PairPotential_MorseUnitTest
|
---|
[3c1465] | 18 |
|
---|
| 19 | TESTS += $(POTENTIALSSPECIFICSTESTS)
|
---|
| 20 | check_PROGRAMS += $(POTENTIALSSPECIFICSTESTS)
|
---|
| 21 | noinst_PROGRAMS += $(POTENTIALSSPECIFICSTESTS)
|
---|
| 22 |
|
---|
| 23 | POTENTIALSSPECIFICSLIBS = \
|
---|
| 24 | ../libMolecuilderPotentials.la \
|
---|
[ffc368] | 25 | $(top_builddir)/LinearAlgebra/src/LinearAlgebra/libLinearAlgebra.la \
|
---|
[3c1465] | 26 | ${CodePatterns_LIBS} \
|
---|
| 27 | $(BOOST_SERIALIZATION_LDFLAGS) $(BOOST_SERIALIZATION_LIBS) \
|
---|
| 28 | $(BOOST_LIB)
|
---|
| 29 |
|
---|
[ffc368] | 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 |
|
---|
[3c1465] | 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 |
|
---|
[76cbd0] | 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 |
|
---|
[3c1465] | 45 |
|
---|
| 46 | #AUTOMAKE_OPTIONS = parallel-tests
|
---|