| 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 | SingletonTest \
|
|---|
| 41 | StackClassUnitTest \
|
|---|
| 42 | TesselationUnitTest \
|
|---|
| 43 | Tesselation_BoundaryTriangleUnitTest \
|
|---|
| 44 | Tesselation_InOutsideUnitTest \
|
|---|
| 45 | VectorUnitTest \
|
|---|
| 46 | ${MENUTESTS}
|
|---|
| 47 |
|
|---|
| 48 |
|
|---|
| 49 | check_PROGRAMS = $(TESTS)
|
|---|
| 50 | noinst_PROGRAMS = $(TESTS) TestRunner
|
|---|
| 51 |
|
|---|
| 52 | GSLLIBS = ../libgslwrapper.a $(BOOST_LIB) ${BOOST_THREAD_LIB}
|
|---|
| 53 | ALLLIBS = ../libmolecuilder.a ${GSLLIBS}
|
|---|
| 54 |
|
|---|
| 55 | TESTSOURCES = \
|
|---|
| 56 | ActOnAllUnitTest.cpp \
|
|---|
| 57 | ActionSequenceTest.cpp \
|
|---|
| 58 | analysisbondsunittest.cpp \
|
|---|
| 59 | AnalysisCorrelationToPointUnitTest.cpp \
|
|---|
| 60 | AnalysisCorrelationToSurfaceUnitTest.cpp \
|
|---|
| 61 | AnalysisPairCorrelationUnitTest.cpp \
|
|---|
| 62 | AtomDescriptorTest.cpp \
|
|---|
| 63 | atomsCalculationTest.cpp \
|
|---|
| 64 | bondgraphunittest.cpp \
|
|---|
| 65 | CacheableTest.cpp \
|
|---|
| 66 | CountBondsUnitTest.cpp \
|
|---|
| 67 | gslmatrixsymmetricunittest.cpp \
|
|---|
| 68 | gslmatrixunittest.cpp \
|
|---|
| 69 | gslvectorunittest.cpp \
|
|---|
| 70 | infounittest.cpp \
|
|---|
| 71 | linearsystemofequationsunittest.cpp \
|
|---|
| 72 | LineUnittest.cpp \
|
|---|
| 73 | LinkedCellUnitTest.cpp \
|
|---|
| 74 | listofbondsunittest.cpp \
|
|---|
| 75 | logunittest.cpp \
|
|---|
| 76 | manipulateAtomsTest.cpp \
|
|---|
| 77 | memoryallocatorunittest.cpp \
|
|---|
| 78 | memoryusageobserverunittest.cpp \
|
|---|
| 79 | MoleculeDescriptorTest.cpp \
|
|---|
| 80 | ObserverTest.cpp \
|
|---|
| 81 | ParserUnitTest.cpp \
|
|---|
| 82 | periodentafelTest.cpp \
|
|---|
| 83 | PlaneUnittest.cpp \
|
|---|
| 84 | SingletonTest.cpp \
|
|---|
| 85 | stackclassunittest.cpp \
|
|---|
| 86 | tesselationunittest.cpp \
|
|---|
| 87 | tesselation_boundarytriangleunittest.cpp \
|
|---|
| 88 | tesselation_insideoutsideunittest.cpp \
|
|---|
| 89 | vectorunittest.cpp
|
|---|
| 90 |
|
|---|
| 91 | TESTHEADERS = \
|
|---|
| 92 | ActOnAllUnitTest.hpp \
|
|---|
| 93 | ActionSequenceTest.hpp \
|
|---|
| 94 | analysisbondsunittest.hpp \
|
|---|
| 95 | AnalysisCorrelationToPointUnitTest.hpp \
|
|---|
| 96 | AnalysisCorrelationToSurfaceUnitTest.hpp \
|
|---|
| 97 | AnalysisPairCorrelationUnitTest.hpp \
|
|---|
| 98 | AtomDescriptorTest.hpp \
|
|---|
| 99 | atomsCalculationTest.hpp \
|
|---|
| 100 | bondgraphunittest.hpp \
|
|---|
| 101 | CacheableTest.hpp \
|
|---|
| 102 | CountBondsUnitTest.hpp \
|
|---|
| 103 | gslmatrixsymmetricunittest.hpp \
|
|---|
| 104 | gslmatrixunittest.hpp \
|
|---|
| 105 | gslvectorunittest.hpp \
|
|---|
| 106 | infounittest.hpp \
|
|---|
| 107 | linearsystemofequationsunittest.hpp \
|
|---|
| 108 | LineUnittest.hpp \
|
|---|
| 109 | LinkedCellUnitTest.hpp \
|
|---|
| 110 | listofbondsunittest.hpp \
|
|---|
| 111 | logunittest.hpp \
|
|---|
| 112 | manipulateAtomsTest.hpp \
|
|---|
| 113 | memoryallocatorunittest.hpp \
|
|---|
| 114 | memoryusageobserverunittest.hpp \
|
|---|
| 115 | MoleculeDescriptorTest.hpp \
|
|---|
| 116 | periodentafelTest.hpp \
|
|---|
| 117 | PlaneUnittest.hpp \
|
|---|
| 118 | ObserverTest.hpp \
|
|---|
| 119 | SingletonTest.hpp \
|
|---|
| 120 | stackclassunittest.hpp \
|
|---|
| 121 | tesselationunittest.hpp \
|
|---|
| 122 | tesselation_boundarytriangleunittest.hpp \
|
|---|
| 123 | tesselation_insideoutsideunittest.hpp \
|
|---|
| 124 | vectorunittest.hpp
|
|---|
| 125 |
|
|---|
| 126 |
|
|---|
| 127 | ActionSequenceTest_SOURCES = UnitTestMain.cpp ../../../TestRunnerClient.hpp ActionSequenceTest.cpp ActionSequenceTest.hpp
|
|---|
| 128 | ActionSequenceTest_LDADD = ${ALLLIBS}
|
|---|
| 129 |
|
|---|
| 130 | ActOnAllUnitTest_SOURCES = UnitTestMain.cpp ../test/ActOnAllTest.hpp ActOnAllUnitTest.cpp ActOnAllUnitTest.hpp
|
|---|
| 131 | ActOnAllUnitTest_LDADD = ${ALLLIBS}
|
|---|
| 132 |
|
|---|
| 133 | AnalysisBondsUnitTests_SOURCES = UnitTestMain.cpp analysisbondsunittest.cpp analysisbondsunittest.hpp
|
|---|
| 134 | AnalysisBondsUnitTests_LDADD = ${ALLLIBS}
|
|---|
| 135 |
|
|---|
| 136 | AnalysisCorrelationToPointUnitTest_SOURCES = UnitTestMain.cpp analysis_correlation.hpp AnalysisCorrelationToPointUnitTest.cpp AnalysisCorrelationToPointUnitTest.hpp
|
|---|
| 137 | AnalysisCorrelationToPointUnitTest_LDADD = ${ALLLIBS}
|
|---|
| 138 |
|
|---|
| 139 | AnalysisCorrelationToSurfaceUnitTest_SOURCES = UnitTestMain.cpp analysis_correlation.hpp AnalysisCorrelationToSurfaceUnitTest.cpp AnalysisCorrelationToSurfaceUnitTest.hpp
|
|---|
| 140 | AnalysisCorrelationToSurfaceUnitTest_LDADD = ${ALLLIBS}
|
|---|
| 141 |
|
|---|
| 142 | AnalysisPairCorrelationUnitTest_SOURCES = UnitTestMain.cpp analysis_correlation.hpp AnalysisPairCorrelationUnitTest.cpp AnalysisPairCorrelationUnitTest.hpp
|
|---|
| 143 | AnalysisPairCorrelationUnitTest_LDADD = ${ALLLIBS}
|
|---|
| 144 |
|
|---|
| 145 | atomsCalculationTest_SOURCES = UnitTestMain.cpp atomsCalculationTest.cpp atomsCalculationTest.hpp
|
|---|
| 146 | atomsCalculationTest_LDADD = ${ALLLIBS}
|
|---|
| 147 |
|
|---|
| 148 | AtomDescriptorTest_SOURCES = UnitTestMain.cpp AtomDescriptorTest.cpp AtomDescriptorTest.hpp
|
|---|
| 149 | AtomDescriptorTest_LDADD = ${ALLLIBS}
|
|---|
| 150 |
|
|---|
| 151 | BondGraphUnitTest_SOURCES = UnitTestMain.cpp bondgraphunittest.cpp bondgraphunittest.hpp
|
|---|
| 152 | BondGraphUnitTest_LDADD = ${ALLLIBS}
|
|---|
| 153 |
|
|---|
| 154 | CacheableTest_SOURCES = UnitTestMain.cpp CacheableTest.cpp CacheableTest.hpp
|
|---|
| 155 | CacheableTest_LDADD = ${ALLLIBS}
|
|---|
| 156 |
|
|---|
| 157 | CountBondsUnitTest_SOURCES = UnitTestMain.cpp CountBondsUnitTest.cpp CountBondsUnitTest.hpp
|
|---|
| 158 | CountBondsUnitTest_LDADD = ${ALLLIBS}
|
|---|
| 159 |
|
|---|
| 160 | GSLMatrixSymmetricUnitTest_SOURCES = UnitTestMain.cpp gslmatrixsymmetricunittest.cpp gslmatrixsymmetricunittest.hpp
|
|---|
| 161 | GSLMatrixSymmetricUnitTest_LDADD = ${GSLLIBS}
|
|---|
| 162 |
|
|---|
| 163 | GSLMatrixUnitTest_SOURCES = UnitTestMain.cpp gslmatrixunittest.cpp gslmatrixunittest.hpp
|
|---|
| 164 | GSLMatrixUnitTest_LDADD = ${GSLLIBS}
|
|---|
| 165 |
|
|---|
| 166 | GSLVectorUnitTest_SOURCES = UnitTestMain.cpp gslvectorunittest.cpp gslvectorunittest.hpp
|
|---|
| 167 | GSLVectorUnitTest_LDADD = ${GSLLIBS}
|
|---|
| 168 |
|
|---|
| 169 | InfoUnitTest_SOURCES = UnitTestMain.cpp infounittest.cpp infounittest.hpp
|
|---|
| 170 | InfoUnitTest_LDADD = ${ALLLIBS}
|
|---|
| 171 |
|
|---|
| 172 | LinearSystemOfEquationsUnitTest_SOURCES = UnitTestMain.cpp linearsystemofequationsunittest.cpp linearsystemofequationsunittest.hpp
|
|---|
| 173 | LinearSystemOfEquationsUnitTest_LDADD = ${ALLLIBS}
|
|---|
| 174 |
|
|---|
| 175 | LineUnittest_SOURCES = UnitTestMain.cpp LineUnittest.cpp LineUnittest.hpp
|
|---|
| 176 | LineUnittest_LDADD = ${ALLLIBS}
|
|---|
| 177 |
|
|---|
| 178 | LinkedCellUnitTest_SOURCES = UnitTestMain.cpp LinkedCellUnitTest.cpp LinkedCellUnitTest.hpp
|
|---|
| 179 | LinkedCellUnitTest_LDADD = ${ALLLIBS}
|
|---|
| 180 |
|
|---|
| 181 | ListOfBondsUnitTest_SOURCES = UnitTestMain.cpp listofbondsunittest.cpp listofbondsunittest.hpp
|
|---|
| 182 | ListOfBondsUnitTest_LDADD = ${ALLLIBS}
|
|---|
| 183 |
|
|---|
| 184 | LogUnitTest_SOURCES = UnitTestMain.cpp logunittest.cpp logunittest.hpp
|
|---|
| 185 | LogUnitTest_LDADD = ${ALLLIBS}
|
|---|
| 186 |
|
|---|
| 187 | manipulateAtomsTest_SOURCES = UnitTestMain.cpp manipulateAtomsTest.cpp manipulateAtomsTest.hpp
|
|---|
| 188 | manipulateAtomsTest_LDADD = ${ALLLIBS}
|
|---|
| 189 |
|
|---|
| 190 | MemoryAllocatorUnitTest_SOURCES = UnitTestMain.cpp ../memoryallocator.hpp ../memoryallocator.cpp ../memoryusageobserver.cpp ../memoryusageobserver.hpp memoryallocatorunittest.cpp memoryallocatorunittest.hpp
|
|---|
| 191 | MemoryAllocatorUnitTest_LDADD = ${ALLLIBS}
|
|---|
| 192 |
|
|---|
| 193 | MemoryUsageObserverUnitTest_SOURCES = UnitTestMain.cpp ../memoryallocator.hpp ../memoryusageobserver.cpp ../memoryusageobserver.hpp memoryusageobserverunittest.cpp memoryusageobserverunittest.hpp
|
|---|
| 194 | MemoryUsageObserverUnitTest_LDADD = ${ALLLIBS}
|
|---|
| 195 |
|
|---|
| 196 | MoleculeDescriptorTest_SOURCES = UnitTestMain.cpp MoleculeDescriptorTest.cpp MoleculeDescriptorTest.hpp
|
|---|
| 197 | MoleculeDescriptorTest_LDADD = ${ALLLIBS}
|
|---|
| 198 |
|
|---|
| 199 | ObserverTest_SOURCES = UnitTestMain.cpp ObserverTest.cpp ObserverTest.hpp
|
|---|
| 200 | ObserverTest_LDADD = ${ALLLIBS}
|
|---|
| 201 |
|
|---|
| 202 | ParserUnitTest_SOURCES = UnitTestMain.cpp ParserUnitTest.cpp ParserUnitTest.hpp
|
|---|
| 203 | ParserUnitTest_LDADD = ${ALLLIBS}
|
|---|
| 204 |
|
|---|
| 205 | periodentafelTest_SOURCES = UnitTestMain.cpp periodentafelTest.cpp periodentafelTest.hpp
|
|---|
| 206 | periodentafelTest_LDADD = ${ALLLIBS}
|
|---|
| 207 |
|
|---|
| 208 | PlaneUnittest_SOURCES = UnitTestMain.cpp PlaneUnittest.cpp PlaneUnittest.hpp
|
|---|
| 209 | PlaneUnittest_LDADD = ${ALLLIBS}
|
|---|
| 210 |
|
|---|
| 211 | SingletonTest_SOURCES = UnitTestMain.cpp SingletonTest.cpp SingletonTest.hpp
|
|---|
| 212 | SingletonTest_LDADD = $(BOOST_LIB) ${BOOST_THREAD_LIB}
|
|---|
| 213 |
|
|---|
| 214 | StackClassUnitTest_SOURCES = UnitTestMain.cpp stackclassunittest.cpp stackclassunittest.hpp
|
|---|
| 215 | StackClassUnitTest_LDADD = ${ALLLIBS}
|
|---|
| 216 |
|
|---|
| 217 | TesselationUnitTest_SOURCES = UnitTestMain.cpp tesselationunittest.cpp tesselationunittest.hpp
|
|---|
| 218 | TesselationUnitTest_LDADD = ${ALLLIBS}
|
|---|
| 219 |
|
|---|
| 220 | Tesselation_BoundaryTriangleUnitTest_SOURCES = UnitTestMain.cpp tesselation_boundarytriangleunittest.cpp tesselation_boundarytriangleunittest.hpp
|
|---|
| 221 | Tesselation_BoundaryTriangleUnitTest_LDADD = ${ALLLIBS}
|
|---|
| 222 |
|
|---|
| 223 | Tesselation_InOutsideUnitTest_SOURCES = UnitTestMain.cpp tesselation_insideoutsideunittest.cpp tesselation_insideoutsideunittest.hpp
|
|---|
| 224 | Tesselation_InOutsideUnitTest_LDADD = ${ALLLIBS}
|
|---|
| 225 |
|
|---|
| 226 | TestRunner_SOURCES = TestRunnerMain.cpp ../memoryallocator.hpp ../memoryallocator.cpp ../memoryusageobserver.cpp ../memoryusageobserver.hpp $(TESTSOURCES) $(TESTHEADERS)
|
|---|
| 227 | TestRunner_LDADD = ${ALLLIBS}
|
|---|
| 228 |
|
|---|
| 229 | VectorUnitTest_SOURCES = UnitTestMain.cpp vectorunittest.cpp vectorunittest.hpp
|
|---|
| 230 | VectorUnitTest_LDADD = ${ALLLIBS}
|
|---|
| 231 |
|
|---|
| 232 | #AUTOMAKE_OPTIONS = parallel-tests
|
|---|