[629e43] | 1 | # PLEASE adhere to the alphabetical ordering in this Makefile!
|
---|
| 2 | # Also indentation by a single tab
|
---|
| 3 |
|
---|
| 4 | GRAPHTESTSSOURCES = \
|
---|
[0fad93] | 5 | ../Graph/unittests/AdjacencyListUnitTest.cpp \
|
---|
[6e5b8d] | 6 | ../Graph/unittests/BondGraphUnitTest.cpp \
|
---|
[0dc8bf2] | 7 | ../Graph/unittests/BoostGraphCreatorUnitTest.cpp \
|
---|
[6e5b8d] | 8 | ../Graph/unittests/BreadthFirstSearchGathererUnitTest.cpp
|
---|
[629e43] | 9 |
|
---|
| 10 | GRAPHTESTSHEADERS = \
|
---|
[0fad93] | 11 | ../Graph/unittests/AdjacencyListUnitTest.hpp \
|
---|
[6e5b8d] | 12 | ../Graph/unittests/BondGraphUnitTest.hpp \
|
---|
[0dc8bf2] | 13 | ../Graph/unittests/BoostGraphCreatorUnitTest.hpp \
|
---|
[6e5b8d] | 14 | ../Graph/unittests/BreadthFirstSearchGathererUnitTest.hpp
|
---|
[629e43] | 15 |
|
---|
| 16 | GRAPHTESTS = \
|
---|
[0fad93] | 17 | AdjacencyListUnitTest \
|
---|
[6e5b8d] | 18 | BondGraphUnitTest \
|
---|
[0dc8bf2] | 19 | BoostGraphCreatorUnitTest \
|
---|
[6e5b8d] | 20 | BreadthFirstSearchGathererUnitTest
|
---|
[629e43] | 21 |
|
---|
| 22 | TESTS += $(GRAPHTESTS)
|
---|
| 23 | check_PROGRAMS += $(GRAPHTESTS)
|
---|
| 24 | noinst_PROGRAMS += $(GRAPHTESTS)
|
---|
| 25 |
|
---|
| 26 | GRAPHLIBS = \
|
---|
[e9e86f] | 27 | libUnitTest.la \
|
---|
[6e5b8d] | 28 | ../libMolecuilderGraph.la \
|
---|
[748fc7] | 29 | ../libMolecuilder.la \
|
---|
[6e5b8d] | 30 | ../libMolecuilderUI.la
|
---|
[eb0d77] | 31 | if CONDJOBMARKET
|
---|
| 32 | GRAPHLIBS += \
|
---|
[cb98f1] | 33 | ../libMolecuilderJobs.la \
|
---|
| 34 | ../libMolecuilderJobs_Work.la
|
---|
[eb0d77] | 35 | endif
|
---|
| 36 | GRAPHLIBS += \
|
---|
[4ecb2d] | 37 | $(top_builddir)/ThirdParty/LinearAlgebra/src/LinearAlgebra/libLinearAlgebra.la \
|
---|
[629e43] | 38 | ${CodePatterns_LIBS} \
|
---|
| 39 | $(BOOST_LIB)
|
---|
| 40 |
|
---|
| 41 |
|
---|
[e9e86f] | 42 | AdjacencyListUnitTest_SOURCES = \
|
---|
[0fad93] | 43 | ../Graph/unittests/AdjacencyListUnitTest.cpp \
|
---|
| 44 | ../Graph/unittests/AdjacencyListUnitTest.hpp
|
---|
| 45 | AdjacencyListUnitTest_LDADD = ${ALLLIBS}
|
---|
| 46 |
|
---|
[e9e86f] | 47 | BondGraphUnitTest_SOURCES = \
|
---|
[629e43] | 48 | ../Graph/unittests/BondGraphUnitTest.cpp \
|
---|
| 49 | ../Graph/unittests/BondGraphUnitTest.hpp
|
---|
| 50 | BondGraphUnitTest_LDADD = ${GRAPHLIBS}
|
---|
| 51 |
|
---|
[0dc8bf2] | 52 | BoostGraphCreatorUnitTest_SOURCES = \
|
---|
| 53 | ../Graph/unittests/BoostGraphCreatorUnitTest.cpp \
|
---|
| 54 | ../Graph/unittests/BoostGraphCreatorUnitTest.hpp
|
---|
| 55 | BoostGraphCreatorUnitTest_LDADD = ${GRAPHLIBS}
|
---|
| 56 |
|
---|
[6e5b8d] | 57 | BreadthFirstSearchGathererUnitTest_SOURCES = \
|
---|
| 58 | ../Graph/unittests/BreadthFirstSearchGathererUnitTest.cpp \
|
---|
| 59 | ../Graph/unittests/BreadthFirstSearchGathererUnitTest.hpp
|
---|
| 60 | BreadthFirstSearchGathererUnitTest_LDADD = ${GRAPHLIBS}
|
---|
[629e43] | 61 |
|
---|
| 62 |
|
---|
| 63 | #AUTOMAKE_OPTIONS = parallel-tests
|
---|