[e06820] | 1 | # PLEASE adhere to the alphabetical ordering in this Makefile!
|
---|
| 2 | # Also indentation by a single tab
|
---|
| 3 |
|
---|
| 4 | FRAGMENTATIONSETVALUESTESTSSOURCES = \
|
---|
[f3bc5f] | 5 | ../Fragmentation/SetValues/unittests/FragmentUnitTest.cpp \
|
---|
[7d92f1] | 6 | ../Fragmentation/SetValues/unittests/HistogramUnitTest.cpp \
|
---|
| 7 | ../Fragmentation/SetValues/unittests/IndexedVectorsUnitTest.cpp
|
---|
[e06820] | 8 |
|
---|
| 9 | FRAGMENTATIONSETVALUESTESTSHEADERS = \
|
---|
[f3bc5f] | 10 | ../Fragmentation/SetValues/unittests/FragmentUnitTest.hpp \
|
---|
[7d92f1] | 11 | ../Fragmentation/SetValues/unittests/HistogramUnitTest.hpp \
|
---|
| 12 | ../Fragmentation/SetValues/unittests/IndexedVectorsUnitTest.hpp
|
---|
[e06820] | 13 |
|
---|
| 14 | FRAGMENTATIONSETVALUESTESTS = \
|
---|
[f3bc5f] | 15 | FragmentUnitTest \
|
---|
[7d92f1] | 16 | HistogramUnitTest \
|
---|
| 17 | IndexedVectorsUnitTest
|
---|
[e06820] | 18 |
|
---|
| 19 | TESTS += $(FRAGMENTATIONSETVALUESTESTS)
|
---|
| 20 | check_PROGRAMS += $(FRAGMENTATIONSETVALUESTESTS)
|
---|
| 21 | noinst_PROGRAMS += $(FRAGMENTATIONSETVALUESTESTS)
|
---|
| 22 |
|
---|
| 23 | FRAGMENTATIONSETVALUESLIBS = \
|
---|
| 24 | ../libMolecuilderFragmentationSetValues.la \
|
---|
| 25 | ${CodePatterns_LIBS} \
|
---|
| 26 | $(BOOST_LIB)
|
---|
| 27 |
|
---|
[f3bc5f] | 28 | FragmentUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \
|
---|
| 29 | ../Fragmentation/SetValues/unittests/FragmentUnitTest.cpp \
|
---|
| 30 | ../Fragmentation/SetValues/unittests/FragmentUnitTest.hpp
|
---|
[a576eb] | 31 | FragmentUnitTest_LDADD = \
|
---|
| 32 | ${FRAGMENTATIONSETVALUESLIBS} \
|
---|
| 33 | $(BOOST_SERIALIZATION_LDFLAGS) $(BOOST_SERIALIZATION_LIBS)
|
---|
| 34 |
|
---|
[e06820] | 35 |
|
---|
| 36 | HistogramUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \
|
---|
| 37 | ../Fragmentation/SetValues/unittests/HistogramUnitTest.cpp \
|
---|
| 38 | ../Fragmentation/SetValues/unittests/HistogramUnitTest.hpp
|
---|
| 39 | HistogramUnitTest_LDADD = ${FRAGMENTATIONSETVALUESLIBS}
|
---|
| 40 |
|
---|
[7d92f1] | 41 | IndexedVectorsUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \
|
---|
| 42 | ../Fragmentation/SetValues/unittests/IndexedVectorsUnitTest.cpp \
|
---|
| 43 | ../Fragmentation/SetValues/unittests/IndexedVectorsUnitTest.hpp
|
---|
| 44 | IndexedVectorsUnitTest_LDADD = ${FRAGMENTATIONSETVALUESLIBS}
|
---|
| 45 |
|
---|
[e06820] | 46 | #AUTOMAKE_OPTIONS = parallel-tests
|
---|