Changes in src/Makefile.am [325390:326bbe]
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/Makefile.am
r325390 r326bbe 30 30 atom_trajectoryparticleinfo.hpp 31 31 32 EXCEPTIONSOURCE = Exceptions/CustomException.cpp \33 Exceptions/LinearDependenceException.cpp \34 Exceptions/MathException.cpp \35 Exceptions/NotInvertibleException.cpp \36 Exceptions/SkewException.cpp \37 Exceptions/ZeroVectorException.cpp38 39 EXCEPTIONHEADER = Exceptions/CustomException.hpp \40 Exceptions/LinearDependenceException.hpp \41 Exceptions/MathException.hpp \42 Exceptions/NotInvertibleException.hpp \43 Exceptions/SkewException.hpp \44 Exceptions/ZeroVectorException.hpp45 46 # TODO: Move Exceptionsource back down, when transition is done47 32 LINALGSOURCE = \ 48 ${EXCEPTIONSOURCE} \49 33 ${HELPERSOURCE} \ 50 34 gslmatrix.cpp \ 51 35 gslvector.cpp \ 52 36 linearsystemofequations.cpp \ 53 Matrix.cpp \54 37 Space.cpp \ 55 38 vector.cpp 56 57 39 58 LINALGHEADER = \ 59 ${EXCEPTIONHEADER} \ 60 gslmatrix.hpp \ 40 LINALGHEADER = gslmatrix.hpp \ 61 41 gslvector.hpp \ 62 42 linearsystemofequations.hpp \ 63 Matrix.hpp \64 43 Space.hpp \ 65 44 vector.hpp … … 123 102 Patterns/Singleton.hpp 124 103 125 # all these files are only used for legacy reasons while the transition is in progress126 # they are only needed to keep the program usable at any point of the transition and will be127 # deleted once everything is fully refactored128 LEGACYSOURCE = Legacy/oldmenu.cpp129 LEGACYHEADER = Legacy/oldmenu.hpp130 131 104 DESCRIPTORSOURCE = Descriptors/AtomDescriptor.cpp \ 132 105 Descriptors/AtomIdDescriptor.cpp \ … … 145 118 Descriptors/MoleculeNameDescriptor.hpp \ 146 119 Descriptors/MoleculePtrDescriptor.hpp 147 148 #TODO: Exceptionsource should go here, when the transisition makes this possible 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 149 133 SOURCE = \ 150 134 ${ANALYSISSOURCE} \ … … 155 139 ${DESCRIPTORSOURCE} \ 156 140 ${HELPERSOURCE} \ 157 ${ LEGACYSOURCE} \141 ${EXCEPTIONSOURCE} \ 158 142 bond.cpp \ 159 143 bondgraph.cpp \ … … 201 185 ${PATTERNHEADER} \ 202 186 ${DESCRIPTORHEADER} \ 203 ${ LEGACYHEADER} \187 ${EXCEPTIONHEADER} \ 204 188 bond.hpp \ 205 189 bondgraph.hpp \
Note:
See TracChangeset
for help on using the changeset viewer.