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