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