Changes in src/Makefile.am [326bbe:325390]
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/Makefile.am
r326bbe r325390 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.cpp 38 39 EXCEPTIONHEADER = 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 32 47 LINALGSOURCE = \ 48 ${EXCEPTIONSOURCE} \ 33 49 ${HELPERSOURCE} \ 34 50 gslmatrix.cpp \ 35 51 gslvector.cpp \ 36 52 linearsystemofequations.cpp \ 53 Matrix.cpp \ 37 54 Space.cpp \ 38 55 vector.cpp 56 39 57 40 LINALGHEADER = gslmatrix.hpp \ 58 LINALGHEADER = \ 59 ${EXCEPTIONHEADER} \ 60 gslmatrix.hpp \ 41 61 gslvector.hpp \ 42 62 linearsystemofequations.hpp \ 63 Matrix.hpp \ 43 64 Space.hpp \ 44 65 vector.hpp … … 102 123 Patterns/Singleton.hpp 103 124 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 128 LEGACYSOURCE = Legacy/oldmenu.cpp 129 LEGACYHEADER = Legacy/oldmenu.hpp 130 104 131 DESCRIPTORSOURCE = Descriptors/AtomDescriptor.cpp \ 105 132 Descriptors/AtomIdDescriptor.cpp \ … … 118 145 Descriptors/MoleculeNameDescriptor.hpp \ 119 146 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 133 149 SOURCE = \ 134 150 ${ANALYSISSOURCE} \ … … 139 155 ${DESCRIPTORSOURCE} \ 140 156 ${HELPERSOURCE} \ 141 ${ EXCEPTIONSOURCE} \157 ${LEGACYSOURCE} \ 142 158 bond.cpp \ 143 159 bondgraph.cpp \ … … 185 201 ${PATTERNHEADER} \ 186 202 ${DESCRIPTORHEADER} \ 187 ${ EXCEPTIONHEADER} \203 ${LEGACYHEADER} \ 188 204 bond.hpp \ 189 205 bondgraph.hpp \
Note:
See TracChangeset
for help on using the changeset viewer.