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