[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 \
|
---|
[0241c5] | 7 | ../Fragmentation/Exporters/unittests/SaturationDistanceMaximizerUnitTest.cpp
|
---|
[c3df23] | 8 |
|
---|
| 9 | FRAGMENTATIONEXPORTERSTESTSHEADERS = \
|
---|
[7d5fcd] | 10 | ../Fragmentation/Exporters/unittests/HydrogenPoolUnitTest.hpp \
|
---|
[a1d1dd] | 11 | ../Fragmentation/Exporters/unittests/SaturatedFragmentUnitTest.hpp \
|
---|
[0241c5] | 12 | ../Fragmentation/Exporters/unittests/SaturationDistanceMaximizerUnitTest.hpp
|
---|
[c3df23] | 13 |
|
---|
| 14 | FRAGMENTATIONEXPORTERSTESTS = \
|
---|
[7d5fcd] | 15 | HydrogenPoolUnitTest \
|
---|
[a1d1dd] | 16 | SaturatedFragmentUnitTest \
|
---|
[0241c5] | 17 | SaturationDistanceMaximizerUnitTest
|
---|
[c3df23] | 18 |
|
---|
| 19 | TESTS += $(FRAGMENTATIONEXPORTERSTESTS)
|
---|
[041b77] | 20 | XFAIL_TESTS += SphericalPointDistributionUnitTest
|
---|
[c3df23] | 21 | check_PROGRAMS += $(FRAGMENTATIONEXPORTERSTESTS)
|
---|
| 22 | noinst_PROGRAMS += $(FRAGMENTATIONEXPORTERSTESTS)
|
---|
| 23 |
|
---|
| 24 | FRAGMENTATIONEXPORTERSLIBS = \
|
---|
[e9e86f] | 25 | libUnitTest.la \
|
---|
[748fc7] | 26 | ../libMolecuilder.la \
|
---|
[c3df23] | 27 | ../libMolecuilderFragmentation.la \
|
---|
| 28 | ${CodePatterns_LIBS} \
|
---|
| 29 | $(BOOST_LIB)
|
---|
| 30 |
|
---|
[e9e86f] | 31 | HydrogenPoolUnitTest_SOURCES = \
|
---|
[c3df23] | 32 | ../Fragmentation/Exporters/unittests/HydrogenPoolUnitTest.cpp \
|
---|
| 33 | ../Fragmentation/Exporters/unittests/HydrogenPoolUnitTest.hpp
|
---|
| 34 | HydrogenPoolUnitTest_LDADD = \
|
---|
[c39675] | 35 | ../libMolecuilderUI.la \
|
---|
| 36 | ${FRAGMENTATIONEXPORTERSLIBS}
|
---|
[7d5fcd] | 37 |
|
---|
[e9e86f] | 38 | SaturatedFragmentUnitTest_SOURCES = \
|
---|
[7d5fcd] | 39 | ../Fragmentation/Exporters/unittests/SaturatedFragmentUnitTest.cpp \
|
---|
| 40 | ../Fragmentation/Exporters/unittests/SaturatedFragmentUnitTest.hpp
|
---|
| 41 | SaturatedFragmentUnitTest_LDADD = \
|
---|
[c39675] | 42 | ../libMolecuilderUI.la \
|
---|
| 43 | $(top_builddir)/LinearAlgebra/src/LinearAlgebra/libLinearAlgebra.la \
|
---|
| 44 | ${FRAGMENTATIONEXPORTERSLIBS}
|
---|
[a1d1dd] | 45 |
|
---|
[e9e86f] | 46 | SaturationDistanceMaximizerUnitTest_SOURCES = \
|
---|
[a1d1dd] | 47 | ../Fragmentation/Exporters/unittests/SaturationDistanceMaximizerUnitTest.hpp \
|
---|
| 48 | ../Fragmentation/Exporters/unittests/stubs/SaturatedBondStub.cpp
|
---|
| 49 | SaturationDistanceMaximizerUnitTest_LDADD = \
|
---|
| 50 | ../libMolecuilderUI.la \
|
---|
| 51 | $(top_builddir)/LinearAlgebra/src/LinearAlgebra/libLinearAlgebra.la \
|
---|
| 52 | ${FRAGMENTATIONEXPORTERSLIBS}
|
---|
[041b77] | 53 |
|
---|
[c3df23] | 54 |
|
---|
| 55 | #AUTOMAKE_OPTIONS = parallel-tests
|
---|