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