Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/Makefile.am

    ra8b10a ra9b86d  
    88
    99include Actions/Makefile.am
     10include Analysis/Makefile.am
     11include Element/Makefile.am
    1012include Graph/Makefile.am
     13include Helpers/Makefile.am
     14include Fragmentation/Makefile.am
    1115include Parser/Makefile.am
    1216include RandomNumbers/Makefile.am
     
    1620AM_LDFLAGS = -ldl ${BOOST_LDFLAGS}
    1721AM_CPPFLAGS = ${BOOST_CPPFLAGS} ${CodePatterns_CFLAGS}
    18 
    19 ANALYSISSOURCE = \
    20   analysis_bonds.cpp \
    21   analysis_correlation.cpp
    22 ANALYSISHEADER = \
    23   analysis_bonds.hpp \
    24   analysis_correlation.hpp
    2522
    2623ATOMSOURCE = \
     
    116113        Dynamics/VerletForceIntegration.hpp
    117114
    118 HELPERSSOURCE = \
    119         Helpers/defs.cpp
    120 
    121 HELPERSHEADER = \
    122         Helpers/defs.hpp \
    123         Helpers/helpers.hpp
    124 
    125115THERMOSTATSOURCE = \
    126116  Thermostats/Berendsen.cpp \
     
    142132
    143133TESSELATIONSOURCE = \
    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
    152145 
    153146TESSELATIONHEADER = \
    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 \
    160155  IPointCloud.hpp \
    161156  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
    165161
    166162MOLECUILDERSOURCE = \
    167   ${ANALYSISSOURCE} \
    168163  ${ATOMSOURCE} \
    169164  ${BONDSOURCE} \
    170165  ${DESCRIPTORSOURCE} \
    171166  ${DYNAMICSSOURCE} \
    172   ${HELPERSSOURCE} \
    173167  ${THERMOSTATSOURCE} \
    174168  ${TESSELATIONSOURCE} \
    175   boundary.cpp \
    176169  Box.cpp \
    177170  config.cpp \
    178171  ConfigFileBuffer.cpp \
    179   element.cpp \
    180   elements_db.cpp \
    181   ellipsoid.cpp \
    182172  Formula.cpp \
    183173  graph.cpp \
     
    188178  molecule_geometry.cpp \
    189179  molecule_graph.cpp \
    190   parser.cpp \
    191   periodentafel.cpp \
    192180  ThermoStatContainer.cpp \
    193   triangleintersectionlist.cpp \
    194181  UIElements/UIFactory.cpp \
    195182  version.c \
     
    198185
    199186MOLECUILDERHEADER = \
    200   ${ANALYSISHEADER} \
    201187  ${ATOMHEADER} \
    202188  ${BONDHEADER} \
     
    204190  ${DESCRIPTORIMPLHEADER} \
    205191  ${DYNAMICSHEADER} \
    206   ${HELPERSHEADER} \
    207192  ${THERMOSTATHEADER} \
    208193  ${TESSELATIONHEADER} \
    209   boundary.hpp \
    210194  Box.hpp \
    211195  config.hpp \
    212196  ConfigFileBuffer.hpp \
    213   element.hpp \
    214   elements_db.hpp \
    215   ellipsoid.hpp \
    216197  Formula.hpp \
    217198  graph.hpp \
    218199  linkedcell.hpp \
    219200  molecule.hpp \
    220   parser.hpp \
    221   periodentafel.hpp \
    222201  ThermoStatContainer.hpp \
    223   triangleintersectionlist.hpp \
    224202  types.hpp \
    225203  UIElements/UIFactory.hpp \
     
    281259libmenu_a_SOURCES = ${UISOURCE} ${UIHEADER}
    282260
    283 molecuilder_DATA = elements.db valence.db orbitals.db Hbonddistance.db Hbondangle.db
     261molecuilder_DATA = Element/elements.db Element/valence.db Element/orbitals.db Element/Hbonddistance.db Element/Hbondangle.db
    284262
    285263molecuilder_CXXFLAGS = $(AM_CPPFLAGS)
     
    313291        $(GUI_LIBS)
    314292
    315 joiner_SOURCES = joiner.cpp datacreator.cpp datacreator.hpp periodentafel.hpp
     293joiner_SOURCES = Fragmentation/joiner.cpp Fragmentation/datacreator.cpp Fragmentation/datacreator.hpp
    316294joiner_LDADD = \
    317         libMolecuilder.la \
    318         libMolecuilderParser.la \
    319         libMolecuilderShapes.la \
    320         libMolecuilderRandomNumbers.la \
     295        libMolecuilderFragmentation.la \
     296        libMolecuilderHelpers.la \
     297        libMolecuilderElement.la \
    321298        $(top_builddir)/LinearAlgebra/src/LinearAlgebra/libLinearAlgebra.la \
    322299        ${CodePatterns_LIBS} \
    323300        $(BOOST_THREAD_LIBS)
    324301
    325 analyzer_SOURCES = analyzer.cpp datacreator.cpp periodentafel.hpp datacreator.hpp
     302analyzer_SOURCES = Fragmentation/analyzer.cpp Fragmentation/datacreator.cpp Fragmentation/datacreator.hpp
    326303analyzer_LDADD = \
    327         libMolecuilder.la \
    328         libMolecuilderParser.la \
    329         libMolecuilderShapes.la \
    330         libMolecuilderRandomNumbers.la \
     304        libMolecuilderFragmentation.la \
     305        libMolecuilderHelpers.la \
     306        libMolecuilderElement.la \
    331307        $(top_builddir)/LinearAlgebra/src/LinearAlgebra/libLinearAlgebra.la \
    332308        ${CodePatterns_LIBS} \
Note: See TracChangeset for help on using the changeset viewer.