Changes in src/Makefile.am [a8b10a:a9b86d]
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/Makefile.am
ra8b10a ra9b86d 8 8 9 9 include Actions/Makefile.am 10 include Analysis/Makefile.am 11 include Element/Makefile.am 10 12 include Graph/Makefile.am 13 include Helpers/Makefile.am 14 include Fragmentation/Makefile.am 11 15 include Parser/Makefile.am 12 16 include RandomNumbers/Makefile.am … … 16 20 AM_LDFLAGS = -ldl ${BOOST_LDFLAGS} 17 21 AM_CPPFLAGS = ${BOOST_CPPFLAGS} ${CodePatterns_CFLAGS} 18 19 ANALYSISSOURCE = \20 analysis_bonds.cpp \21 analysis_correlation.cpp22 ANALYSISHEADER = \23 analysis_bonds.hpp \24 analysis_correlation.hpp25 22 26 23 ATOMSOURCE = \ … … 116 113 Dynamics/VerletForceIntegration.hpp 117 114 118 HELPERSSOURCE = \119 Helpers/defs.cpp120 121 HELPERSHEADER = \122 Helpers/defs.hpp \123 Helpers/helpers.hpp124 125 115 THERMOSTATSOURCE = \ 126 116 Thermostats/Berendsen.cpp \ … … 142 132 143 133 TESSELATIONSOURCE = \ 144 BoundaryLineSet.cpp \ 145 BoundaryPointSet.cpp \ 146 BoundaryPolygonSet.cpp \ 147 BoundaryTriangleSet.cpp \ 148 CandidateForTesselation.cpp \ 149 tesselation.cpp \ 150 tesselationhelpers.cpp \ 151 TesselPoint.cpp 134 Tesselation/boundary.cpp \ 135 Tesselation/BoundaryLineSet.cpp \ 136 Tesselation/BoundaryPointSet.cpp \ 137 Tesselation/BoundaryPolygonSet.cpp \ 138 Tesselation/BoundaryTriangleSet.cpp \ 139 Tesselation/CandidateForTesselation.cpp \ 140 Tesselation/ellipsoid.cpp \ 141 Tesselation/tesselation.cpp \ 142 Tesselation/tesselationhelpers.cpp \ 143 Tesselation/TesselPoint.cpp \ 144 Tesselation/triangleintersectionlist.cpp 152 145 153 146 TESSELATIONHEADER = \ 154 BoundaryLineSet.hpp \ 155 BoundaryMaps.hpp \ 156 BoundaryPointSet.hpp \ 157 BoundaryPolygonSet.hpp \ 158 BoundaryTriangleSet.hpp \ 159 CandidateForTesselation.hpp \ 147 Tesselation/boundary.hpp \ 148 Tesselation/BoundaryLineSet.hpp \ 149 Tesselation/BoundaryMaps.hpp \ 150 Tesselation/BoundaryPointSet.hpp \ 151 Tesselation/BoundaryPolygonSet.hpp \ 152 Tesselation/BoundaryTriangleSet.hpp \ 153 Tesselation/CandidateForTesselation.hpp \ 154 Tesselation/ellipsoid.hpp \ 160 155 IPointCloud.hpp \ 161 156 PointCloudAdaptor.hpp \ 162 tesselation.hpp \ 163 tesselationhelpers.hpp \ 164 TesselPoint.hpp 157 Tesselation/tesselation.hpp \ 158 Tesselation/tesselationhelpers.hpp \ 159 Tesselation/TesselPoint.hpp \ 160 Tesselation/triangleintersectionlist.hpp 165 161 166 162 MOLECUILDERSOURCE = \ 167 ${ANALYSISSOURCE} \168 163 ${ATOMSOURCE} \ 169 164 ${BONDSOURCE} \ 170 165 ${DESCRIPTORSOURCE} \ 171 166 ${DYNAMICSSOURCE} \ 172 ${HELPERSSOURCE} \173 167 ${THERMOSTATSOURCE} \ 174 168 ${TESSELATIONSOURCE} \ 175 boundary.cpp \176 169 Box.cpp \ 177 170 config.cpp \ 178 171 ConfigFileBuffer.cpp \ 179 element.cpp \180 elements_db.cpp \181 ellipsoid.cpp \182 172 Formula.cpp \ 183 173 graph.cpp \ … … 188 178 molecule_geometry.cpp \ 189 179 molecule_graph.cpp \ 190 parser.cpp \191 periodentafel.cpp \192 180 ThermoStatContainer.cpp \ 193 triangleintersectionlist.cpp \194 181 UIElements/UIFactory.cpp \ 195 182 version.c \ … … 198 185 199 186 MOLECUILDERHEADER = \ 200 ${ANALYSISHEADER} \201 187 ${ATOMHEADER} \ 202 188 ${BONDHEADER} \ … … 204 190 ${DESCRIPTORIMPLHEADER} \ 205 191 ${DYNAMICSHEADER} \ 206 ${HELPERSHEADER} \207 192 ${THERMOSTATHEADER} \ 208 193 ${TESSELATIONHEADER} \ 209 boundary.hpp \210 194 Box.hpp \ 211 195 config.hpp \ 212 196 ConfigFileBuffer.hpp \ 213 element.hpp \214 elements_db.hpp \215 ellipsoid.hpp \216 197 Formula.hpp \ 217 198 graph.hpp \ 218 199 linkedcell.hpp \ 219 200 molecule.hpp \ 220 parser.hpp \221 periodentafel.hpp \222 201 ThermoStatContainer.hpp \ 223 triangleintersectionlist.hpp \224 202 types.hpp \ 225 203 UIElements/UIFactory.hpp \ … … 281 259 libmenu_a_SOURCES = ${UISOURCE} ${UIHEADER} 282 260 283 molecuilder_DATA = elements.db valence.db orbitals.db Hbonddistance.dbHbondangle.db261 molecuilder_DATA = Element/elements.db Element/valence.db Element/orbitals.db Element/Hbonddistance.db Element/Hbondangle.db 284 262 285 263 molecuilder_CXXFLAGS = $(AM_CPPFLAGS) … … 313 291 $(GUI_LIBS) 314 292 315 joiner_SOURCES = joiner.cpp datacreator.cpp datacreator.hpp periodentafel.hpp293 joiner_SOURCES = Fragmentation/joiner.cpp Fragmentation/datacreator.cpp Fragmentation/datacreator.hpp 316 294 joiner_LDADD = \ 317 libMolecuilder.la \ 318 libMolecuilderParser.la \ 319 libMolecuilderShapes.la \ 320 libMolecuilderRandomNumbers.la \ 295 libMolecuilderFragmentation.la \ 296 libMolecuilderHelpers.la \ 297 libMolecuilderElement.la \ 321 298 $(top_builddir)/LinearAlgebra/src/LinearAlgebra/libLinearAlgebra.la \ 322 299 ${CodePatterns_LIBS} \ 323 300 $(BOOST_THREAD_LIBS) 324 301 325 analyzer_SOURCES = analyzer.cpp datacreator.cpp periodentafel.hpp datacreator.hpp302 analyzer_SOURCES = Fragmentation/analyzer.cpp Fragmentation/datacreator.cpp Fragmentation/datacreator.hpp 326 303 analyzer_LDADD = \ 327 libMolecuilder.la \ 328 libMolecuilderParser.la \ 329 libMolecuilderShapes.la \ 330 libMolecuilderRandomNumbers.la \ 304 libMolecuilderFragmentation.la \ 305 libMolecuilderHelpers.la \ 306 libMolecuilderElement.la \ 331 307 $(top_builddir)/LinearAlgebra/src/LinearAlgebra/libLinearAlgebra.la \ 332 308 ${CodePatterns_LIBS} \
Note:
See TracChangeset
for help on using the changeset viewer.