Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/Makefile.am

    r326bbe r325390  
    3030  atom_trajectoryparticleinfo.hpp
    3131
     32EXCEPTIONSOURCE = Exceptions/CustomException.cpp \
     33                                  Exceptions/LinearDependenceException.cpp \
     34                                  Exceptions/MathException.cpp \
     35                                  Exceptions/NotInvertibleException.cpp \
     36                                  Exceptions/SkewException.cpp \
     37                                  Exceptions/ZeroVectorException.cpp
     38                                 
     39EXCEPTIONHEADER = Exceptions/CustomException.hpp \
     40                                  Exceptions/LinearDependenceException.hpp \
     41                                  Exceptions/MathException.hpp \
     42                                  Exceptions/NotInvertibleException.hpp \
     43                                  Exceptions/SkewException.hpp \
     44                                  Exceptions/ZeroVectorException.hpp
     45
     46# TODO: Move Exceptionsource back down, when transition is done
    3247LINALGSOURCE = \
     48  ${EXCEPTIONSOURCE} \
    3349  ${HELPERSOURCE} \
    3450  gslmatrix.cpp \
    3551  gslvector.cpp \
    3652  linearsystemofequations.cpp \
     53  Matrix.cpp \
    3754  Space.cpp \
    3855  vector.cpp
     56 
    3957                           
    40 LINALGHEADER = gslmatrix.hpp \
     58LINALGHEADER = \
     59  ${EXCEPTIONHEADER} \
     60  gslmatrix.hpp \
    4161  gslvector.hpp \
    4262  linearsystemofequations.hpp \
     63  Matrix.hpp \
    4364  Space.hpp \
    4465  vector.hpp
     
    102123  Patterns/Singleton.hpp
    103124
     125# all these files are only used for legacy reasons while the transition is in progress
     126# they are only needed to keep the program usable at any point of the transition and will be
     127# deleted once everything is fully refactored
     128LEGACYSOURCE = Legacy/oldmenu.cpp
     129LEGACYHEADER = Legacy/oldmenu.hpp
     130
    104131DESCRIPTORSOURCE = Descriptors/AtomDescriptor.cpp \
    105132  Descriptors/AtomIdDescriptor.cpp \
     
    118145  Descriptors/MoleculeNameDescriptor.hpp \
    119146  Descriptors/MoleculePtrDescriptor.hpp
    120                                    
    121 EXCEPTIONSOURCE = Exceptions/CustomException.cpp \
    122                                   Exceptions/LinearDependenceException.cpp \
    123                                   Exceptions/MathException.cpp \
    124                                   Exceptions/SkewException.cpp \
    125                                   Exceptions/ZeroVectorException.cpp
    126                                  
    127 EXCEPTIONHEADER = Exceptions/CustomException.hpp \
    128                                   Exceptions/LinearDependenceException.hpp \
    129                                   Exceptions/MathException.hpp \
    130                                   Exceptions/SkewException.hpp \
    131                                   Exceptions/ZeroVectorException.hpp
    132 
     147
     148#TODO: Exceptionsource should go here, when the transisition makes this possible                                   
    133149SOURCE = \
    134150  ${ANALYSISSOURCE} \
     
    139155  ${DESCRIPTORSOURCE} \
    140156  ${HELPERSOURCE} \
    141   ${EXCEPTIONSOURCE} \
     157  ${LEGACYSOURCE} \
    142158  bond.cpp \
    143159  bondgraph.cpp \
     
    185201  ${PATTERNHEADER} \
    186202  ${DESCRIPTORHEADER} \
    187   ${EXCEPTIONHEADER} \
     203  ${LEGACYHEADER} \
    188204  bond.hpp \
    189205  bondgraph.hpp \
Note: See TracChangeset for help on using the changeset viewer.