| [18eecf] | 1 | # PLEASE adhere to the alphabetical ordering in this Makefile!
|
|---|
| 2 | # Also indentation by a single tab
|
|---|
| 3 |
|
|---|
| [c0bccb] | 4 | SUBDIRS = \
|
|---|
| [deddf6] | 5 | ../Actions/unittests \
|
|---|
| [d766b5] | 6 | ../Descriptors/unittests \
|
|---|
| [fff54f] | 7 | ../LinearAlgebra/unittests \
|
|---|
| [41396a] | 8 | ../Parser/unittests \
|
|---|
| [3f9eba] | 9 | ../RandomNumbers/unittests \
|
|---|
| [6d2207] | 10 | ../Shapes/unittests \
|
|---|
| [19290f] | 11 | ../UIElements/CommandLineUI/unittests \
|
|---|
| [0e2031] | 12 | ../UIElements/Menu/unittests
|
|---|
| [c0bccb] | 13 |
|
|---|
| [b9907c] | 14 | INCLUDES = -I$(top_srcdir)/src
|
|---|
| 15 |
|
|---|
| [a0064e] | 16 | AM_LDFLAGS = ${CodePatterns_LIBS} $(CPPUNIT_LIBS) -ldl
|
|---|
| 17 | AM_CPPFLAGS = ${BOOST_CPPFLAGS} $(CPPUNIT_CFLAGS) ${CodePatterns_CFLAGS}
|
|---|
| [be90f1] | 18 |
|
|---|
| [9fb860] | 19 | TESTS = \
|
|---|
| [f844ef] | 20 | AnalysisBondsUnitTest \
|
|---|
| [9fb860] | 21 | AnalysisCorrelationToPointUnitTest \
|
|---|
| 22 | AnalysisCorrelationToSurfaceUnitTest \
|
|---|
| 23 | AnalysisPairCorrelationUnitTest \
|
|---|
| 24 | BondGraphUnitTest \
|
|---|
| [f844ef] | 25 | BoxUnitTest \
|
|---|
| [dfe8ef] | 26 | CountBondsUnitTest \
|
|---|
| [9f632c] | 27 | FormulaUnittest \
|
|---|
| [dcea0f] | 28 | LinkedCellUnitTest \
|
|---|
| [9fb860] | 29 | ListOfBondsUnitTest \
|
|---|
| [f844ef] | 30 | PeriodentafelUnitTest \
|
|---|
| [9fb860] | 31 | TesselationUnitTest \
|
|---|
| [e9c677] | 32 | Tesselation_BoundaryTriangleUnitTest \
|
|---|
| [f649de] | 33 | Tesselation_InOutsideUnitTest \
|
|---|
| 34 | WorldTimeUnitTest
|
|---|
| [4fbca9c] | 35 |
|
|---|
| 36 |
|
|---|
| [63c1f6] | 37 | check_PROGRAMS = $(TESTS)
|
|---|
| [9b6b2f] | 38 | noinst_PROGRAMS = $(TESTS) TestRunner
|
|---|
| [b9907c] | 39 |
|
|---|
| [d5240d] | 40 | BOOST_LIB = $(BOOST_LDFLAGS) $(BOOST_MPL_LIB) $(BOOST_PROGRAM_OPTIONS_LIB) $(BOOST_FILESYSTEM_LIB) $(BOOST_SYSTEM_LIB) $(BOOST_THREAD_LIB)
|
|---|
| [952f38] | 41 | GSLLIBS = \
|
|---|
| [6d2207] | 42 | ../Shapes/libMolecuilderShapes.la \
|
|---|
| [acbe1b] | 43 | ../LinearAlgebra/libMolecuilderLinearAlgebra.la \
|
|---|
| 44 | ../Exceptions/libMolecuilderExceptions.la \
|
|---|
| [1ee3b8d] | 45 | ../RandomNumbers/libMolecuilderRandomNumbers.la \
|
|---|
| [e4decc] | 46 | $(BOOST_LIB)
|
|---|
| [f4b5b7] | 47 | ALLLIBS = \
|
|---|
| [acbe1b] | 48 | ../UIElements/libMolecuilderUI.la \
|
|---|
| 49 | ../Actions/libMolecuilderActions.la \
|
|---|
| [952f38] | 50 | ${PARSERLIBS} \
|
|---|
| [acbe1b] | 51 | ../libMolecuilder.la \
|
|---|
| [e4decc] | 52 | ${GSLLIBS}
|
|---|
| 53 |
|
|---|
| [acbe1b] | 54 | PARSERLIBS = ../Parser/libMolecuilderParser.la
|
|---|
| 55 | UILIBS = ../UIElements/libMolecuilderUI.la
|
|---|
| [4d9c01] | 56 |
|
|---|
| [9b6b2f] | 57 | TESTSOURCES = \
|
|---|
| [deddf6] | 58 | ../Actions/unittests/ActionRegistryUnitTest.cpp \
|
|---|
| [f7c0c4] | 59 | ../Actions/unittests/ActionSequenceUnitTest.cpp \
|
|---|
| [f844ef] | 60 | AnalysisBondsUnitTest.cpp \
|
|---|
| [9b6b2f] | 61 | AnalysisCorrelationToPointUnitTest.cpp \
|
|---|
| 62 | AnalysisCorrelationToSurfaceUnitTest.cpp \
|
|---|
| 63 | AnalysisPairCorrelationUnitTest.cpp \
|
|---|
| [d766b5] | 64 | ../Descriptors/unittests/AtomDescriptorUnitTest.cpp \
|
|---|
| [3c8e8b] | 65 | ../Actions/unittests/AtomsCalculationUnitTest.cpp \
|
|---|
| [f844ef] | 66 | BondGraphUnitTest.cpp \
|
|---|
| 67 | BoxUnitTest.cpp \
|
|---|
| [5f612ee] | 68 | CountBondsUnitTest.cpp \
|
|---|
| [f844ef] | 69 | FormulaUnitTest.cpp \
|
|---|
| [78b593] | 70 | ../LinearAlgebra/unittests/LinearSystemOfEquationsUnitTest.cpp \
|
|---|
| [f89024] | 71 | ../LinearAlgebra/unittests/LineUnitTest.cpp \
|
|---|
| [5f612ee] | 72 | LinkedCellUnitTest.cpp \
|
|---|
| [f844ef] | 73 | ListOfBondsUnitTest.cpp \
|
|---|
| [efd61b] | 74 | ../Actions/unittests/ManipulateAtomsUnitTest.cpp \
|
|---|
| [fff54f] | 75 | ../LinearAlgebra/unittests/MatrixContentSymmetricUnitTest.cpp \
|
|---|
| 76 | ../LinearAlgebra/unittests/MatrixContentUnitTest.cpp \
|
|---|
| 77 | ../LinearAlgebra/unittests/MatrixUnitTest.cpp \
|
|---|
| [19290f] | 78 | ../UIElements/CommandLineUI/unittests/CommandLineParser_ActionRegistry_ConsistenyUnitTest.cpp \
|
|---|
| [0e2031] | 79 | ../UIElements/Menu/unittests/MenuDescriptionUnitTest.cpp \
|
|---|
| [6c9adc] | 80 | ../Descriptors/unittests/MoleculeDescriptorUnitTest.cpp \
|
|---|
| [9e4fd1] | 81 | ../Parser/unittests/ParserMpqcUnitTest.cpp \
|
|---|
| 82 | ../Parser/unittests/ParserPcpUnitTest.cpp \
|
|---|
| 83 | ../Parser/unittests/ParserPdbUnitTest.cpp \
|
|---|
| [41396a] | 84 | ../Parser/unittests/ParserTremoloUnitTest.cpp \
|
|---|
| [9e4fd1] | 85 | ../Parser/unittests/ParserXyzUnitTest.cpp \
|
|---|
| [f844ef] | 86 | PeriodentafelUnitTest.cpp \
|
|---|
| [5bc8229] | 87 | ../LinearAlgebra/unittests/PlaneUnitTest.cpp \
|
|---|
| [0b3cbdf] | 88 | ../Shapes/unittests/ShapeUnitTest.cpp \
|
|---|
| [f844ef] | 89 | TesselationUnitTest.cpp \
|
|---|
| 90 | Tesselation_BoundaryTriangleUnitTest.cpp \
|
|---|
| 91 | Tesselation_InsideOutsideUnitTest.cpp \
|
|---|
| [dfafe7] | 92 | ../LinearAlgebra/unittests/VectorContentUnitTest.cpp \
|
|---|
| [f649de] | 93 | ../LinearAlgebra/unittests/VectorUnitTest.cpp \
|
|---|
| 94 | WorldTimeUnitTest.cpp
|
|---|
| [9b6b2f] | 95 |
|
|---|
| 96 | TESTHEADERS = \
|
|---|
| [deddf6] | 97 | ../Actions/unittests/ActionRegistryUnitTest.hpp \
|
|---|
| [f7c0c4] | 98 | ../Actions/unittests/ActionSequenceUnitTest.hpp \
|
|---|
| [f844ef] | 99 | AnalysisBondsUnitTest.hpp \
|
|---|
| [5f612ee] | 100 | AnalysisCorrelationToPointUnitTest.hpp \
|
|---|
| 101 | AnalysisCorrelationToSurfaceUnitTest.hpp \
|
|---|
| 102 | AnalysisPairCorrelationUnitTest.hpp \
|
|---|
| [d766b5] | 103 | ../Descriptors/unittests/AtomDescriptorUnitTest.hpp \
|
|---|
| [3c8e8b] | 104 | ../Actions/unittests/AtomsCalculationUnitTest.hpp \
|
|---|
| [f844ef] | 105 | BondGraphUnitTest.hpp \
|
|---|
| 106 | BoxUnitTest.hpp \
|
|---|
| [5f612ee] | 107 | CountBondsUnitTest.hpp \
|
|---|
| [f844ef] | 108 | FormulaUnitTest.hpp \
|
|---|
| [78b593] | 109 | ../LinearAlgebra/unittests/LinearSystemOfEquationsUnitTest.hpp \
|
|---|
| [f89024] | 110 | ../LinearAlgebra/unittests/LineUnitTest.hpp \
|
|---|
| [5f612ee] | 111 | LinkedCellUnitTest.hpp \
|
|---|
| [f844ef] | 112 | ListOfBondsUnitTest.hpp \
|
|---|
| [efd61b] | 113 | ../Actions/unittests/ManipulateAtomsUnitTest.hpp \
|
|---|
| [fff54f] | 114 | ../LinearAlgebra/unittests/MatrixContentSymmetricUnitTest.hpp \
|
|---|
| 115 | ../LinearAlgebra/unittests/MatrixContentUnitTest.hpp \
|
|---|
| 116 | ../LinearAlgebra/unittests/MatrixUnitTest.hpp \
|
|---|
| [19290f] | 117 | ../UIElements/CommandLineUI/unittests/CommandLineParser_ActionRegistry_ConsistenyUnitTest.hpp \
|
|---|
| [0e2031] | 118 | ../UIElements/Menu/unittests/MenuDescriptionUnitTest.hpp \
|
|---|
| [6c9adc] | 119 | ../Descriptors/unittests/MoleculeDescriptorUnitTest.hpp \
|
|---|
| [9e4fd1] | 120 | ../Parser/unittests/ParserMpqcUnitTest.hpp \
|
|---|
| 121 | ../Parser/unittests/ParserPcpUnitTest.hpp \
|
|---|
| 122 | ../Parser/unittests/ParserPdbUnitTest.hpp \
|
|---|
| [41396a] | 123 | ../Parser/unittests/ParserTremoloUnitTest.hpp \
|
|---|
| [9e4fd1] | 124 | ../Parser/unittests/ParserXyzUnitTest.hpp \
|
|---|
| [f844ef] | 125 | PeriodentafelUnitTest.hpp \
|
|---|
| [5bc8229] | 126 | ../LinearAlgebra/unittests/PlaneUnitTest.hpp \
|
|---|
| [0b3cbdf] | 127 | ../Shapes/unittests/ShapeUnitTest.hpp \
|
|---|
| [f844ef] | 128 | TesselationUnitTest.hpp \
|
|---|
| 129 | Tesselation_BoundaryTriangleUnitTest.hpp \
|
|---|
| 130 | Tesselation_InsideOutsideUnitTest.hpp \
|
|---|
| [dfafe7] | 131 | ../LinearAlgebra/unittests/VectorContentUnitTest.hpp \
|
|---|
| [f649de] | 132 | ../LinearAlgebra/unittests/VectorUnitTest.hpp \
|
|---|
| 133 | WorldTimeUnitTest.hpp
|
|---|
| [9fb860] | 134 |
|
|---|
| [9b6b2f] | 135 |
|
|---|
| [f844ef] | 136 | AnalysisBondsUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \
|
|---|
| 137 | AnalysisBondsUnitTest.cpp \
|
|---|
| 138 | AnalysisBondsUnitTest.hpp
|
|---|
| 139 | AnalysisBondsUnitTest_LDADD = ${ALLLIBS}
|
|---|
| [96c961] | 140 |
|
|---|
| [f844ef] | 141 | AnalysisCorrelationToPointUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \
|
|---|
| 142 | analysis_correlation.hpp \
|
|---|
| 143 | AnalysisCorrelationToPointUnitTest.cpp \
|
|---|
| 144 | AnalysisCorrelationToPointUnitTest.hpp
|
|---|
| [4d9c01] | 145 | AnalysisCorrelationToPointUnitTest_LDADD = ${ALLLIBS}
|
|---|
| [c4d4df] | 146 |
|
|---|
| [f844ef] | 147 | AnalysisCorrelationToSurfaceUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \
|
|---|
| 148 | analysis_correlation.hpp \
|
|---|
| 149 | AnalysisCorrelationToSurfaceUnitTest.cpp \
|
|---|
| 150 | AnalysisCorrelationToSurfaceUnitTest.hpp
|
|---|
| [4d9c01] | 151 | AnalysisCorrelationToSurfaceUnitTest_LDADD = ${ALLLIBS}
|
|---|
| [c4d4df] | 152 |
|
|---|
| [f844ef] | 153 | AnalysisPairCorrelationUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \
|
|---|
| 154 | analysis_correlation.hpp \
|
|---|
| 155 | AnalysisPairCorrelationUnitTest.cpp \
|
|---|
| 156 | AnalysisPairCorrelationUnitTest.hpp
|
|---|
| [4d9c01] | 157 | AnalysisPairCorrelationUnitTest_LDADD = ${ALLLIBS}
|
|---|
| [c111db] | 158 |
|
|---|
| [f844ef] | 159 | BondGraphUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \
|
|---|
| 160 | BondGraphUnitTest.cpp \
|
|---|
| 161 | BondGraphUnitTest.hpp
|
|---|
| [4d9c01] | 162 | BondGraphUnitTest_LDADD = ${ALLLIBS}
|
|---|
| [46ea3b] | 163 |
|
|---|
| [f844ef] | 164 | BoxUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \
|
|---|
| 165 | BoxUnitTest.cpp \
|
|---|
| 166 | BoxUnitTest.hpp
|
|---|
| 167 | BoxUnitTest_LDADD = ${ALLLIBS}
|
|---|
| [77bc4f] | 168 |
|
|---|
| [f844ef] | 169 | CountBondsUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \
|
|---|
| 170 | CountBondsUnitTest.cpp \
|
|---|
| 171 | CountBondsUnitTest.hpp
|
|---|
| [5f612ee] | 172 | CountBondsUnitTest_LDADD = ${ALLLIBS}
|
|---|
| 173 |
|
|---|
| [f844ef] | 174 | FormulaUnittest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \
|
|---|
| 175 | FormulaUnitTest.cpp \
|
|---|
| 176 | FormulaUnitTest.hpp
|
|---|
| [9f632c] | 177 | FormulaUnittest_LDADD = ${ALLLIBS}
|
|---|
| 178 |
|
|---|
| [f844ef] | 179 | LinkedCellUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \
|
|---|
| 180 | LinkedCellUnitTest.cpp \
|
|---|
| 181 | LinkedCellUnitTest.hpp
|
|---|
| [5f612ee] | 182 | LinkedCellUnitTest_LDADD = ${ALLLIBS}
|
|---|
| [46ea3b] | 183 |
|
|---|
| [f844ef] | 184 | ListOfBondsUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \
|
|---|
| 185 | ListOfBondsUnitTest.cpp \
|
|---|
| 186 | ListOfBondsUnitTest.hpp
|
|---|
| [4d9c01] | 187 | ListOfBondsUnitTest_LDADD = ${ALLLIBS}
|
|---|
| [266237] | 188 |
|
|---|
| [f844ef] | 189 | PeriodentafelUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \
|
|---|
| 190 | PeriodentafelUnitTest.cpp \
|
|---|
| 191 | PeriodentafelUnitTest.hpp
|
|---|
| 192 | PeriodentafelUnitTest_LDADD = ${ALLLIBS}
|
|---|
| [4eb4fe] | 193 |
|
|---|
| [f844ef] | 194 | TesselationUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \
|
|---|
| 195 | TesselationUnitTest.cpp \
|
|---|
| 196 | TesselationUnitTest.hpp
|
|---|
| [4d9c01] | 197 | TesselationUnitTest_LDADD = ${ALLLIBS}
|
|---|
| [c15ca2] | 198 |
|
|---|
| [f844ef] | 199 | Tesselation_BoundaryTriangleUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \
|
|---|
| 200 | Tesselation_BoundaryTriangleUnitTest.cpp \
|
|---|
| 201 | Tesselation_BoundaryTriangleUnitTest.hpp
|
|---|
| [4d9c01] | 202 | Tesselation_BoundaryTriangleUnitTest_LDADD = ${ALLLIBS}
|
|---|
| [e9c677] | 203 |
|
|---|
| [f844ef] | 204 | Tesselation_InOutsideUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \
|
|---|
| 205 | Tesselation_InsideOutsideUnitTest.cpp \
|
|---|
| 206 | Tesselation_InsideOutsideUnitTest.hpp
|
|---|
| [4d9c01] | 207 | Tesselation_InOutsideUnitTest_LDADD = ${ALLLIBS}
|
|---|
| [d96277] | 208 |
|
|---|
| [f649de] | 209 | WorldTimeUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \
|
|---|
| 210 | WorldTimeUnitTest.cpp \
|
|---|
| 211 | WorldTimeUnitTest.hpp \
|
|---|
| 212 | ../WorldTime.cpp \
|
|---|
| 213 | ../WorldTime.hpp
|
|---|
| 214 | WorldTimeUnitTest_LDADD = ${BOOST_LIB}
|
|---|
| 215 |
|
|---|
| 216 |
|
|---|
| [36166d] | 217 | TestRunner_SOURCES = TestRunnerMain.cpp $(TESTSOURCES) $(TESTHEADERS)
|
|---|
| [b37436] | 218 | TestRunner_LDADD = ${UILIBS} ${ALLLIBS}
|
|---|
| [7a1ce5] | 219 |
|
|---|
| [18eecf] | 220 | #AUTOMAKE_OPTIONS = parallel-tests
|
|---|