[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 \
|
---|
[c52abd] | 8 | ../Graph/unittests/BreadthFirstSearchGathererUnitTest.cpp \
|
---|
| 9 | ../Graph/unittests/Graph6ReaderUnitTest.cpp
|
---|
[629e43] | 10 |
|
---|
| 11 | GRAPHTESTSHEADERS = \
|
---|
[0fad93] | 12 | ../Graph/unittests/AdjacencyListUnitTest.hpp \
|
---|
[6e5b8d] | 13 | ../Graph/unittests/BondGraphUnitTest.hpp \
|
---|
[0dc8bf2] | 14 | ../Graph/unittests/BoostGraphCreatorUnitTest.hpp \
|
---|
[c52abd] | 15 | ../Graph/unittests/BreadthFirstSearchGathererUnitTest.hpp \
|
---|
| 16 | ../Graph/unittests/Graph6ReaderUnitTest.hpp
|
---|
[629e43] | 17 |
|
---|
| 18 | GRAPHTESTS = \
|
---|
[0fad93] | 19 | AdjacencyListUnitTest \
|
---|
[6e5b8d] | 20 | BondGraphUnitTest \
|
---|
[0dc8bf2] | 21 | BoostGraphCreatorUnitTest \
|
---|
[c52abd] | 22 | BreadthFirstSearchGathererUnitTest \
|
---|
| 23 | Graph6ReaderUnitTest
|
---|
[629e43] | 24 |
|
---|
| 25 | TESTS += $(GRAPHTESTS)
|
---|
| 26 | check_PROGRAMS += $(GRAPHTESTS)
|
---|
| 27 | noinst_PROGRAMS += $(GRAPHTESTS)
|
---|
| 28 |
|
---|
| 29 | GRAPHLIBS = \
|
---|
[e9e86f] | 30 | libUnitTest.la \
|
---|
[6e5b8d] | 31 | ../libMolecuilderGraph.la \
|
---|
[748fc7] | 32 | ../libMolecuilder.la \
|
---|
[6e5b8d] | 33 | ../libMolecuilderUI.la
|
---|
[eb0d77] | 34 | if CONDJOBMARKET
|
---|
| 35 | GRAPHLIBS += \
|
---|
[cb98f1] | 36 | ../libMolecuilderJobs.la \
|
---|
| 37 | ../libMolecuilderJobs_Work.la
|
---|
[eb0d77] | 38 | endif
|
---|
| 39 | GRAPHLIBS += \
|
---|
[4ecb2d] | 40 | $(top_builddir)/ThirdParty/LinearAlgebra/src/LinearAlgebra/libLinearAlgebra.la \
|
---|
[629e43] | 41 | ${CodePatterns_LIBS} \
|
---|
| 42 | $(BOOST_LIB)
|
---|
| 43 |
|
---|
| 44 |
|
---|
[e9e86f] | 45 | AdjacencyListUnitTest_SOURCES = \
|
---|
[0fad93] | 46 | ../Graph/unittests/AdjacencyListUnitTest.cpp \
|
---|
| 47 | ../Graph/unittests/AdjacencyListUnitTest.hpp
|
---|
| 48 | AdjacencyListUnitTest_LDADD = ${ALLLIBS}
|
---|
| 49 |
|
---|
[e9e86f] | 50 | BondGraphUnitTest_SOURCES = \
|
---|
[629e43] | 51 | ../Graph/unittests/BondGraphUnitTest.cpp \
|
---|
| 52 | ../Graph/unittests/BondGraphUnitTest.hpp
|
---|
| 53 | BondGraphUnitTest_LDADD = ${GRAPHLIBS}
|
---|
| 54 |
|
---|
[0dc8bf2] | 55 | BoostGraphCreatorUnitTest_SOURCES = \
|
---|
| 56 | ../Graph/unittests/BoostGraphCreatorUnitTest.cpp \
|
---|
| 57 | ../Graph/unittests/BoostGraphCreatorUnitTest.hpp
|
---|
| 58 | BoostGraphCreatorUnitTest_LDADD = ${GRAPHLIBS}
|
---|
| 59 |
|
---|
[6e5b8d] | 60 | BreadthFirstSearchGathererUnitTest_SOURCES = \
|
---|
| 61 | ../Graph/unittests/BreadthFirstSearchGathererUnitTest.cpp \
|
---|
| 62 | ../Graph/unittests/BreadthFirstSearchGathererUnitTest.hpp
|
---|
| 63 | BreadthFirstSearchGathererUnitTest_LDADD = ${GRAPHLIBS}
|
---|
[629e43] | 64 |
|
---|
[c52abd] | 65 | Graph6ReaderUnitTest_SOURCES = \
|
---|
| 66 | ../Graph/unittests/Graph6ReaderUnitTest.cpp \
|
---|
| 67 | ../Graph/unittests/Graph6ReaderUnitTest.hpp
|
---|
| 68 | Graph6ReaderUnitTest_LDADD = ${GRAPHLIBS}
|
---|
[629e43] | 69 |
|
---|
| 70 | #AUTOMAKE_OPTIONS = parallel-tests
|
---|