[c3df23] | 1 | # PLEASE adhere to the alphabetical ordering in this Makefile!
|
---|
| 2 | # Also indentation by a single tab
|
---|
| 3 |
|
---|
| 4 | FRAGMENTATIONEXPORTERSSOURCES = \
|
---|
[7d5fcd] | 5 | ../Fragmentation/Exporters/unittests/HydrogenPoolUnitTest.cpp \
|
---|
[a1d1dd] | 6 | ../Fragmentation/Exporters/unittests/SaturatedFragmentUnitTest.cpp \
|
---|
[64cafb2] | 7 | ../Fragmentation/Exporters/unittests/SaturationDistanceMaximizerUnitTest.cpp \
|
---|
| 8 | ../Fragmentation/Exporters/unittests/SphericalPointDistributionUnitTest.cpp
|
---|
[c3df23] | 9 |
|
---|
| 10 | FRAGMENTATIONEXPORTERSTESTSHEADERS = \
|
---|
[7d5fcd] | 11 | ../Fragmentation/Exporters/unittests/HydrogenPoolUnitTest.hpp \
|
---|
[a1d1dd] | 12 | ../Fragmentation/Exporters/unittests/SaturatedFragmentUnitTest.hpp \
|
---|
[64cafb2] | 13 | ../Fragmentation/Exporters/unittests/SaturationDistanceMaximizerUnitTest.hpp \
|
---|
| 14 | ../Fragmentation/Exporters/unittests/SphericalPointDistributionUnitTest.hpp
|
---|
[c3df23] | 15 |
|
---|
| 16 | FRAGMENTATIONEXPORTERSTESTS = \
|
---|
[7d5fcd] | 17 | HydrogenPoolUnitTest \
|
---|
[a1d1dd] | 18 | SaturatedFragmentUnitTest \
|
---|
[64cafb2] | 19 | SaturationDistanceMaximizerUnitTest \
|
---|
| 20 | SphericalPointDistributionUnitTest
|
---|
[c3df23] | 21 |
|
---|
| 22 | TESTS += $(FRAGMENTATIONEXPORTERSTESTS)
|
---|
| 23 | check_PROGRAMS += $(FRAGMENTATIONEXPORTERSTESTS)
|
---|
| 24 | noinst_PROGRAMS += $(FRAGMENTATIONEXPORTERSTESTS)
|
---|
| 25 |
|
---|
| 26 | FRAGMENTATIONEXPORTERSLIBS = \
|
---|
[e9e86f] | 27 | libUnitTest.la \
|
---|
[748fc7] | 28 | ../libMolecuilder.la \
|
---|
[c3df23] | 29 | ../libMolecuilderFragmentation.la \
|
---|
| 30 | ${CodePatterns_LIBS} \
|
---|
| 31 | $(BOOST_LIB)
|
---|
| 32 |
|
---|
[e9e86f] | 33 | HydrogenPoolUnitTest_SOURCES = \
|
---|
[c3df23] | 34 | ../Fragmentation/Exporters/unittests/HydrogenPoolUnitTest.cpp \
|
---|
| 35 | ../Fragmentation/Exporters/unittests/HydrogenPoolUnitTest.hpp
|
---|
| 36 | HydrogenPoolUnitTest_LDADD = \
|
---|
[c39675] | 37 | ../libMolecuilderUI.la \
|
---|
| 38 | ${FRAGMENTATIONEXPORTERSLIBS}
|
---|
[7d5fcd] | 39 |
|
---|
[e9e86f] | 40 | SaturatedFragmentUnitTest_SOURCES = \
|
---|
[7d5fcd] | 41 | ../Fragmentation/Exporters/unittests/SaturatedFragmentUnitTest.cpp \
|
---|
| 42 | ../Fragmentation/Exporters/unittests/SaturatedFragmentUnitTest.hpp
|
---|
| 43 | SaturatedFragmentUnitTest_LDADD = \
|
---|
[c39675] | 44 | ../libMolecuilderUI.la \
|
---|
| 45 | $(top_builddir)/LinearAlgebra/src/LinearAlgebra/libLinearAlgebra.la \
|
---|
| 46 | ${FRAGMENTATIONEXPORTERSLIBS}
|
---|
[a1d1dd] | 47 |
|
---|
[e9e86f] | 48 | SaturationDistanceMaximizerUnitTest_SOURCES = \
|
---|
[64cafb2] | 49 | ../Fragmentation/Exporters/unittests/SaturationDistanceMaximizerUnitTest.cpp \
|
---|
[a1d1dd] | 50 | ../Fragmentation/Exporters/unittests/SaturationDistanceMaximizerUnitTest.hpp \
|
---|
| 51 | ../Fragmentation/Exporters/unittests/stubs/SaturatedBondStub.cpp
|
---|
| 52 | SaturationDistanceMaximizerUnitTest_LDADD = \
|
---|
| 53 | ../libMolecuilderUI.la \
|
---|
| 54 | $(top_builddir)/LinearAlgebra/src/LinearAlgebra/libLinearAlgebra.la \
|
---|
| 55 | ${FRAGMENTATIONEXPORTERSLIBS}
|
---|
[64cafb2] | 56 |
|
---|
| 57 | SphericalPointDistributionUnitTest_SOURCES = \
|
---|
| 58 | ../Fragmentation/Exporters/unittests/SphericalPointDistributionUnitTest.cpp \
|
---|
| 59 | ../Fragmentation/Exporters/unittests/SphericalPointDistributionUnitTest.hpp
|
---|
| 60 | SphericalPointDistributionUnitTest_LDADD = \
|
---|
| 61 | ../libMolecuilderUI.la \
|
---|
| 62 | $(top_builddir)/LinearAlgebra/src/LinearAlgebra/libLinearAlgebra.la \
|
---|
| 63 | ${FRAGMENTATIONEXPORTERSLIBS}
|
---|
[041b77] | 64 |
|
---|
[c3df23] | 65 |
|
---|
| 66 | #AUTOMAKE_OPTIONS = parallel-tests
|
---|