| 1 | # PLEASE adhere to the alphabetical ordering in this Makefile!
|
|---|
| 2 | # Also indentation by a single tab
|
|---|
| 3 |
|
|---|
| 4 | INCLUDES = -I$(top_srcdir)/src
|
|---|
| 5 |
|
|---|
| 6 | AM_LDFLAGS = $(CPPUNIT_LIBS) -ldl
|
|---|
| 7 | AM_CXXFLAGS = $(CPPUNIT_CFLAGS)
|
|---|
| 8 |
|
|---|
| 9 | MENUTESTS = \
|
|---|
| 10 | ActionSequenceTest
|
|---|
| 11 |
|
|---|
| 12 | TESTS = \
|
|---|
| 13 | ActOnAllUnitTest \
|
|---|
| 14 | AnalysisBondsUnitTests \
|
|---|
| 15 | AnalysisCorrelationToPointUnitTest \
|
|---|
| 16 | AnalysisCorrelationToSurfaceUnitTest \
|
|---|
| 17 | AnalysisPairCorrelationUnitTest \
|
|---|
| 18 | atomsCalculationTest \
|
|---|
| 19 | AtomDescriptorTest \
|
|---|
| 20 | BondGraphUnitTest \
|
|---|
| 21 | CacheableTest \
|
|---|
| 22 | CountBondsUnitTest \
|
|---|
| 23 | GSLMatrixSymmetricUnitTest \
|
|---|
| 24 | GSLMatrixUnitTest \
|
|---|
| 25 | GSLVectorUnitTest \
|
|---|
| 26 | InfoUnitTest \
|
|---|
| 27 | LinearSystemOfEquationsUnitTest \
|
|---|
| 28 | LineUnittest \
|
|---|
| 29 | LinkedCellUnitTest \
|
|---|
| 30 | ListOfBondsUnitTest \
|
|---|
| 31 | LogUnitTest \
|
|---|
| 32 | manipulateAtomsTest \
|
|---|
| 33 | MemoryUsageObserverUnitTest \
|
|---|
| 34 | MemoryAllocatorUnitTest \
|
|---|
| 35 | MoleculeDescriptorTest \
|
|---|
| 36 | ObserverTest \
|
|---|
| 37 | ParserUnitTest \
|
|---|
| 38 | periodentafelTest \
|
|---|
| 39 | PlaneUnittest \
|
|---|
| 40 | ShapeUnittest \
|
|---|
| 41 | SingletonTest \
|
|---|
| 42 | StackClassUnitTest \
|
|---|
| 43 | TesselationUnitTest \
|
|---|
| 44 | Tesselation_BoundaryTriangleUnitTest \
|
|---|
| 45 | Tesselation_InOutsideUnitTest \
|
|---|
| 46 | VectorUnitTest \
|
|---|
| 47 | ${MENUTESTS}
|
|---|
| 48 |
|
|---|
| 49 |
|
|---|
| 50 | check_PROGRAMS = $(TESTS)
|
|---|
| 51 | noinst_PROGRAMS = $(TESTS) TestRunner
|
|---|
| 52 |
|
|---|
| 53 | GSLLIBS = ../libgslwrapper.a $(BOOST_LIB) ${BOOST_THREAD_LIB}
|
|---|
| 54 | ALLLIBS = ../libmolecuilder.a ${GSLLIBS}
|
|---|
| 55 |
|
|---|
| 56 | TESTSOURCES = \
|
|---|
| 57 | ActOnAllUnitTest.cpp \
|
|---|
| 58 | ActionSequenceTest.cpp \
|
|---|
| 59 | analysisbondsunittest.cpp \
|
|---|
| 60 | AnalysisCorrelationToPointUnitTest.cpp \
|
|---|
| 61 | AnalysisCorrelationToSurfaceUnitTest.cpp \
|
|---|
| 62 | AnalysisPairCorrelationUnitTest.cpp \
|
|---|
| 63 | AtomDescriptorTest.cpp \
|
|---|
| 64 | atomsCalculationTest.cpp \
|
|---|
| 65 | bondgraphunittest.cpp \
|
|---|
| 66 | CacheableTest.cpp \
|
|---|
| 67 | CountBondsUnitTest.cpp \
|
|---|
| 68 | gslmatrixsymmetricunittest.cpp \
|
|---|
| 69 | gslmatrixunittest.cpp \
|
|---|
| 70 | gslvectorunittest.cpp \
|
|---|
| 71 | infounittest.cpp \
|
|---|
| 72 | linearsystemofequationsunittest.cpp \
|
|---|
| 73 | LineUnittest.cpp \
|
|---|
| 74 | LinkedCellUnitTest.cpp \
|
|---|
| 75 | listofbondsunittest.cpp \
|
|---|
| 76 | logunittest.cpp \
|
|---|
| 77 | manipulateAtomsTest.cpp \
|
|---|
| 78 | memoryallocatorunittest.cpp \
|
|---|
| 79 | memoryusageobserverunittest.cpp \
|
|---|
| 80 | MoleculeDescriptorTest.cpp \
|
|---|
| 81 | ObserverTest.cpp \
|
|---|
| 82 | ParserUnitTest.cpp \
|
|---|
| 83 | periodentafelTest.cpp \
|
|---|
| 84 | PlaneUnittest.cpp \
|
|---|
| 85 | ShapeUnittest.cpp \
|
|---|
| 86 | SingletonTest.cpp \
|
|---|
| 87 | stackclassunittest.cpp \
|
|---|
| 88 | tesselationunittest.cpp \
|
|---|
| 89 | tesselation_boundarytriangleunittest.cpp \
|
|---|
| 90 | tesselation_insideoutsideunittest.cpp \
|
|---|
| 91 | vectorunittest.cpp
|
|---|
| 92 |
|
|---|
| 93 | TESTHEADERS = \
|
|---|
| 94 | ActOnAllUnitTest.hpp \
|
|---|
| 95 | ActionSequenceTest.hpp \
|
|---|
| 96 | analysisbondsunittest.hpp \
|
|---|
| 97 | AnalysisCorrelationToPointUnitTest.hpp \
|
|---|
| 98 | AnalysisCorrelationToSurfaceUnitTest.hpp \
|
|---|
| 99 | AnalysisPairCorrelationUnitTest.hpp \
|
|---|
| 100 | AtomDescriptorTest.hpp \
|
|---|
| 101 | atomsCalculationTest.hpp \
|
|---|
| 102 | bondgraphunittest.hpp \
|
|---|
| 103 | CacheableTest.hpp \
|
|---|
| 104 | CountBondsUnitTest.hpp \
|
|---|
| 105 | gslmatrixsymmetricunittest.hpp \
|
|---|
| 106 | gslmatrixunittest.hpp \
|
|---|
| 107 | gslvectorunittest.hpp \
|
|---|
| 108 | infounittest.hpp \
|
|---|
| 109 | linearsystemofequationsunittest.hpp \
|
|---|
| 110 | LineUnittest.hpp \
|
|---|
| 111 | LinkedCellUnitTest.hpp \
|
|---|
| 112 | listofbondsunittest.hpp \
|
|---|
| 113 | logunittest.hpp \
|
|---|
| 114 | manipulateAtomsTest.hpp \
|
|---|
| 115 | memoryallocatorunittest.hpp \
|
|---|
| 116 | memoryusageobserverunittest.hpp \
|
|---|
| 117 | MoleculeDescriptorTest.hpp \
|
|---|
| 118 | periodentafelTest.hpp \
|
|---|
| 119 | PlaneUnittest.hpp \
|
|---|
| 120 | ObserverTest.hpp \
|
|---|
| 121 | SingletonTest.hpp \
|
|---|
| 122 | stackclassunittest.hpp \
|
|---|
| 123 | tesselationunittest.hpp \
|
|---|
| 124 | tesselation_boundarytriangleunittest.hpp \
|
|---|
| 125 | tesselation_insideoutsideunittest.hpp \
|
|---|
| 126 | vectorunittest.hpp
|
|---|
| 127 |
|
|---|
| 128 |
|
|---|
| 129 | ActionSequenceTest_SOURCES = UnitTestMain.cpp ../../../TestRunnerClient.hpp ActionSequenceTest.cpp ActionSequenceTest.hpp
|
|---|
| 130 | ActionSequenceTest_LDADD = ${ALLLIBS}
|
|---|
| 131 |
|
|---|
| 132 | ActOnAllUnitTest_SOURCES = UnitTestMain.cpp ../test/ActOnAllTest.hpp ActOnAllUnitTest.cpp ActOnAllUnitTest.hpp
|
|---|
| 133 | ActOnAllUnitTest_LDADD = ${ALLLIBS}
|
|---|
| 134 |
|
|---|
| 135 | AnalysisBondsUnitTests_SOURCES = UnitTestMain.cpp analysisbondsunittest.cpp analysisbondsunittest.hpp
|
|---|
| 136 | AnalysisBondsUnitTests_LDADD = ${ALLLIBS}
|
|---|
| 137 |
|
|---|
| 138 | AnalysisCorrelationToPointUnitTest_SOURCES = UnitTestMain.cpp analysis_correlation.hpp AnalysisCorrelationToPointUnitTest.cpp AnalysisCorrelationToPointUnitTest.hpp
|
|---|
| 139 | AnalysisCorrelationToPointUnitTest_LDADD = ${ALLLIBS}
|
|---|
| 140 |
|
|---|
| 141 | AnalysisCorrelationToSurfaceUnitTest_SOURCES = UnitTestMain.cpp analysis_correlation.hpp AnalysisCorrelationToSurfaceUnitTest.cpp AnalysisCorrelationToSurfaceUnitTest.hpp
|
|---|
| 142 | AnalysisCorrelationToSurfaceUnitTest_LDADD = ${ALLLIBS}
|
|---|
| 143 |
|
|---|
| 144 | AnalysisPairCorrelationUnitTest_SOURCES = UnitTestMain.cpp analysis_correlation.hpp AnalysisPairCorrelationUnitTest.cpp AnalysisPairCorrelationUnitTest.hpp
|
|---|
| 145 | AnalysisPairCorrelationUnitTest_LDADD = ${ALLLIBS}
|
|---|
| 146 |
|
|---|
| 147 | atomsCalculationTest_SOURCES = UnitTestMain.cpp atomsCalculationTest.cpp atomsCalculationTest.hpp
|
|---|
| 148 | atomsCalculationTest_LDADD = ${ALLLIBS}
|
|---|
| 149 |
|
|---|
| 150 | AtomDescriptorTest_SOURCES = UnitTestMain.cpp AtomDescriptorTest.cpp AtomDescriptorTest.hpp
|
|---|
| 151 | AtomDescriptorTest_LDADD = ${ALLLIBS}
|
|---|
| 152 |
|
|---|
| 153 | BondGraphUnitTest_SOURCES = UnitTestMain.cpp bondgraphunittest.cpp bondgraphunittest.hpp
|
|---|
| 154 | BondGraphUnitTest_LDADD = ${ALLLIBS}
|
|---|
| 155 |
|
|---|
| 156 | CacheableTest_SOURCES = UnitTestMain.cpp CacheableTest.cpp CacheableTest.hpp
|
|---|
| 157 | CacheableTest_LDADD = ${ALLLIBS}
|
|---|
| 158 |
|
|---|
| 159 | CountBondsUnitTest_SOURCES = UnitTestMain.cpp CountBondsUnitTest.cpp CountBondsUnitTest.hpp
|
|---|
| 160 | CountBondsUnitTest_LDADD = ${ALLLIBS}
|
|---|
| 161 |
|
|---|
| 162 | GSLMatrixSymmetricUnitTest_SOURCES = UnitTestMain.cpp gslmatrixsymmetricunittest.cpp gslmatrixsymmetricunittest.hpp
|
|---|
| 163 | GSLMatrixSymmetricUnitTest_LDADD = ${GSLLIBS}
|
|---|
| 164 |
|
|---|
| 165 | GSLMatrixUnitTest_SOURCES = UnitTestMain.cpp gslmatrixunittest.cpp gslmatrixunittest.hpp
|
|---|
| 166 | GSLMatrixUnitTest_LDADD = ${GSLLIBS}
|
|---|
| 167 |
|
|---|
| 168 | GSLVectorUnitTest_SOURCES = UnitTestMain.cpp gslvectorunittest.cpp gslvectorunittest.hpp
|
|---|
| 169 | GSLVectorUnitTest_LDADD = ${GSLLIBS}
|
|---|
| 170 |
|
|---|
| 171 | InfoUnitTest_SOURCES = UnitTestMain.cpp infounittest.cpp infounittest.hpp
|
|---|
| 172 | InfoUnitTest_LDADD = ${ALLLIBS}
|
|---|
| 173 |
|
|---|
| 174 | LinearSystemOfEquationsUnitTest_SOURCES = UnitTestMain.cpp linearsystemofequationsunittest.cpp linearsystemofequationsunittest.hpp
|
|---|
| 175 | LinearSystemOfEquationsUnitTest_LDADD = ${ALLLIBS}
|
|---|
| 176 |
|
|---|
| 177 | LineUnittest_SOURCES = UnitTestMain.cpp LineUnittest.cpp LineUnittest.hpp
|
|---|
| 178 | LineUnittest_LDADD = ${ALLLIBS}
|
|---|
| 179 |
|
|---|
| 180 | LinkedCellUnitTest_SOURCES = UnitTestMain.cpp LinkedCellUnitTest.cpp LinkedCellUnitTest.hpp
|
|---|
| 181 | LinkedCellUnitTest_LDADD = ${ALLLIBS}
|
|---|
| 182 |
|
|---|
| 183 | ListOfBondsUnitTest_SOURCES = UnitTestMain.cpp listofbondsunittest.cpp listofbondsunittest.hpp
|
|---|
| 184 | ListOfBondsUnitTest_LDADD = ${ALLLIBS}
|
|---|
| 185 |
|
|---|
| 186 | LogUnitTest_SOURCES = UnitTestMain.cpp logunittest.cpp logunittest.hpp
|
|---|
| 187 | LogUnitTest_LDADD = ${ALLLIBS}
|
|---|
| 188 |
|
|---|
| 189 | manipulateAtomsTest_SOURCES = UnitTestMain.cpp manipulateAtomsTest.cpp manipulateAtomsTest.hpp
|
|---|
| 190 | manipulateAtomsTest_LDADD = ${ALLLIBS}
|
|---|
| 191 |
|
|---|
| 192 | MemoryAllocatorUnitTest_SOURCES = UnitTestMain.cpp ../memoryallocator.hpp ../memoryallocator.cpp ../memoryusageobserver.cpp ../memoryusageobserver.hpp memoryallocatorunittest.cpp memoryallocatorunittest.hpp
|
|---|
| 193 | MemoryAllocatorUnitTest_LDADD = ${ALLLIBS}
|
|---|
| 194 |
|
|---|
| 195 | MemoryUsageObserverUnitTest_SOURCES = UnitTestMain.cpp ../memoryallocator.hpp ../memoryusageobserver.cpp ../memoryusageobserver.hpp memoryusageobserverunittest.cpp memoryusageobserverunittest.hpp
|
|---|
| 196 | MemoryUsageObserverUnitTest_LDADD = ${ALLLIBS}
|
|---|
| 197 |
|
|---|
| 198 | MoleculeDescriptorTest_SOURCES = UnitTestMain.cpp MoleculeDescriptorTest.cpp MoleculeDescriptorTest.hpp
|
|---|
| 199 | MoleculeDescriptorTest_LDADD = ${ALLLIBS}
|
|---|
| 200 |
|
|---|
| 201 | ObserverTest_SOURCES = UnitTestMain.cpp ObserverTest.cpp ObserverTest.hpp
|
|---|
| 202 | ObserverTest_LDADD = ${ALLLIBS}
|
|---|
| 203 |
|
|---|
| 204 | ParserUnitTest_SOURCES = UnitTestMain.cpp ParserUnitTest.cpp ParserUnitTest.hpp
|
|---|
| 205 | ParserUnitTest_LDADD = ${ALLLIBS}
|
|---|
| 206 |
|
|---|
| 207 | periodentafelTest_SOURCES = UnitTestMain.cpp periodentafelTest.cpp periodentafelTest.hpp
|
|---|
| 208 | periodentafelTest_LDADD = ${ALLLIBS}
|
|---|
| 209 |
|
|---|
| 210 | PlaneUnittest_SOURCES = UnitTestMain.cpp PlaneUnittest.cpp PlaneUnittest.hpp
|
|---|
| 211 | PlaneUnittest_LDADD = ${ALLLIBS}
|
|---|
| 212 |
|
|---|
| 213 | ShapeUnittest_SOURCES = UnitTestMain.cpp ShapeUnittest.cpp ShapeUnittest.hpp
|
|---|
| 214 | ShapeUnittest_LDADD = ${ALLLIBS}
|
|---|
| 215 |
|
|---|
| 216 | SingletonTest_SOURCES = UnitTestMain.cpp SingletonTest.cpp SingletonTest.hpp
|
|---|
| 217 | SingletonTest_LDADD = $(BOOST_LIB) ${BOOST_THREAD_LIB}
|
|---|
| 218 |
|
|---|
| 219 | StackClassUnitTest_SOURCES = UnitTestMain.cpp stackclassunittest.cpp stackclassunittest.hpp
|
|---|
| 220 | StackClassUnitTest_LDADD = ${ALLLIBS}
|
|---|
| 221 |
|
|---|
| 222 | TesselationUnitTest_SOURCES = UnitTestMain.cpp tesselationunittest.cpp tesselationunittest.hpp
|
|---|
| 223 | TesselationUnitTest_LDADD = ${ALLLIBS}
|
|---|
| 224 |
|
|---|
| 225 | Tesselation_BoundaryTriangleUnitTest_SOURCES = UnitTestMain.cpp tesselation_boundarytriangleunittest.cpp tesselation_boundarytriangleunittest.hpp
|
|---|
| 226 | Tesselation_BoundaryTriangleUnitTest_LDADD = ${ALLLIBS}
|
|---|
| 227 |
|
|---|
| 228 | Tesselation_InOutsideUnitTest_SOURCES = UnitTestMain.cpp tesselation_insideoutsideunittest.cpp tesselation_insideoutsideunittest.hpp
|
|---|
| 229 | Tesselation_InOutsideUnitTest_LDADD = ${ALLLIBS}
|
|---|
| 230 |
|
|---|
| 231 | TestRunner_SOURCES = TestRunnerMain.cpp ../memoryallocator.hpp ../memoryallocator.cpp ../memoryusageobserver.cpp ../memoryusageobserver.hpp $(TESTSOURCES) $(TESTHEADERS)
|
|---|
| 232 | TestRunner_LDADD = ${ALLLIBS}
|
|---|
| 233 |
|
|---|
| 234 | VectorUnitTest_SOURCES = UnitTestMain.cpp vectorunittest.cpp vectorunittest.hpp
|
|---|
| 235 | VectorUnitTest_LDADD = ${ALLLIBS}
|
|---|
| 236 |
|
|---|
| 237 | #AUTOMAKE_OPTIONS = parallel-tests
|
|---|