[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 = \
|
---|
| 24 | ../libMolecuilderFragmentation.la \
|
---|
| 25 | ${CodePatterns_LIBS} \
|
---|
| 26 | $(BOOST_LIB)
|
---|
| 27 |
|
---|
| 28 | HydrogenPoolUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \
|
---|
| 29 | ../Fragmentation/Exporters/unittests/HydrogenPoolUnitTest.cpp \
|
---|
| 30 | ../Fragmentation/Exporters/unittests/HydrogenPoolUnitTest.hpp
|
---|
| 31 | HydrogenPoolUnitTest_LDADD = \
|
---|
[c39675] | 32 | ../libMolecuilderUI.la \
|
---|
| 33 | ${FRAGMENTATIONEXPORTERSLIBS}
|
---|
[7d5fcd] | 34 |
|
---|
| 35 | SaturatedFragmentUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \
|
---|
| 36 | ../Fragmentation/Exporters/unittests/SaturatedFragmentUnitTest.cpp \
|
---|
| 37 | ../Fragmentation/Exporters/unittests/SaturatedFragmentUnitTest.hpp
|
---|
| 38 | SaturatedFragmentUnitTest_LDADD = \
|
---|
[c39675] | 39 | ../libMolecuilderUI.la \
|
---|
| 40 | $(top_builddir)/LinearAlgebra/src/LinearAlgebra/libLinearAlgebra.la \
|
---|
| 41 | ${FRAGMENTATIONEXPORTERSLIBS}
|
---|
[a1d1dd] | 42 |
|
---|
| 43 | SaturationDistanceMaximizerUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \
|
---|
| 44 | ../Fragmentation/Exporters/unittests/SaturationDistanceMaximizerUnitTest.cpp \
|
---|
| 45 | ../Fragmentation/Exporters/unittests/SaturationDistanceMaximizerUnitTest.hpp \
|
---|
| 46 | ../Fragmentation/Exporters/unittests/stubs/SaturatedBondStub.cpp
|
---|
| 47 | SaturationDistanceMaximizerUnitTest_LDADD = \
|
---|
| 48 | ../libMolecuilderUI.la \
|
---|
| 49 | $(top_builddir)/LinearAlgebra/src/LinearAlgebra/libLinearAlgebra.la \
|
---|
| 50 | ${FRAGMENTATIONEXPORTERSLIBS}
|
---|
[7d5fcd] | 51 |
|
---|
[c3df23] | 52 |
|
---|
| 53 | #AUTOMAKE_OPTIONS = parallel-tests
|
---|