source: src/Makefile.am@ 7ac4af

Action_Thermostats Add_AtomRandomPerturbation Add_FitFragmentPartialChargesAction Add_RotateAroundBondAction Add_SelectAtomByNameAction Added_ParseSaveFragmentResults AddingActions_SaveParseParticleParameters Adding_Graph_to_ChangeBondActions Adding_MD_integration_tests Adding_ParticleName_to_Atom Adding_StructOpt_integration_tests AtomFragments Automaking_mpqc_open AutomationFragmentation_failures Candidate_v1.5.4 Candidate_v1.6.0 Candidate_v1.6.1 ChangeBugEmailaddress ChangingTestPorts ChemicalSpaceEvaluator CombiningParticlePotentialParsing Combining_Subpackages Debian_Package_split Debian_package_split_molecuildergui_only Disabling_MemDebug Docu_Python_wait EmpiricalPotential_contain_HomologyGraph EmpiricalPotential_contain_HomologyGraph_documentation Enable_parallel_make_install Enhance_userguide Enhanced_StructuralOptimization Enhanced_StructuralOptimization_continued Example_ManyWaysToTranslateAtom Exclude_Hydrogens_annealWithBondGraph FitPartialCharges_GlobalError Fix_BoundInBox_CenterInBox_MoleculeActions Fix_ChargeSampling_PBC Fix_ChronosMutex Fix_FitPartialCharges Fix_FitPotential_needs_atomicnumbers Fix_ForceAnnealing Fix_IndependentFragmentGrids Fix_ParseParticles Fix_ParseParticles_split_forward_backward_Actions Fix_PopActions Fix_QtFragmentList_sorted_selection Fix_Restrictedkeyset_FragmentMolecule Fix_StatusMsg Fix_StepWorldTime_single_argument Fix_Verbose_Codepatterns Fix_fitting_potentials Fixes ForceAnnealing_goodresults ForceAnnealing_oldresults ForceAnnealing_tocheck ForceAnnealing_with_BondGraph ForceAnnealing_with_BondGraph_continued ForceAnnealing_with_BondGraph_continued_betteresults ForceAnnealing_with_BondGraph_contraction-expansion FragmentAction_writes_AtomFragments FragmentMolecule_checks_bonddegrees GeometryObjects Gui_Fixes Gui_displays_atomic_force_velocity ImplicitCharges IndependentFragmentGrids IndependentFragmentGrids_IndividualZeroInstances IndependentFragmentGrids_IntegrationTest IndependentFragmentGrids_Sole_NN_Calculation JobMarket_RobustOnKillsSegFaults JobMarket_StableWorkerPool JobMarket_unresolvable_hostname_fix MoreRobust_FragmentAutomation ODR_violation_mpqc_open PartialCharges_OrthogonalSummation PdbParser_setsAtomName PythonUI_with_named_parameters QtGui_reactivate_TimeChanged_changes Recreated_GuiChecks Rewrite_FitPartialCharges RotateToPrincipalAxisSystem_UndoRedo SaturateAtoms_findBestMatching SaturateAtoms_singleDegree StoppableMakroAction Subpackage_CodePatterns Subpackage_JobMarket Subpackage_LinearAlgebra Subpackage_levmar Subpackage_mpqc_open Subpackage_vmg Switchable_LogView ThirdParty_MPQC_rebuilt_buildsystem TrajectoryDependenant_MaxOrder TremoloParser_IncreasedPrecision TremoloParser_MultipleTimesteps TremoloParser_setsAtomName Ubuntu_1604_changes stable
Last change on this file since 7ac4af was 456341, checked in by Tillmann Crueger <crueger@…>, 15 years ago

Moved all Exceptions and Matrix class from LinAlg module back to main module

  • Property mode set to 100644
File size: 7.1 KB
Line 
1# PLEASE adhere to the alphabetical ordering in this Makefile!
2# Also indentation by a single tab
3
4SUBDIRS = Actions UIElements
5
6# this includes source files that need to be present at multiple points
7HELPERSOURCE = \
8 Helpers/Assert.cpp \
9 Helpers/MemDebug.cpp
10
11ATOMSOURCE = \
12 atom.cpp \
13 atom_atominfo.cpp \
14 atom_bondedparticle.cpp \
15 atom_bondedparticleinfo.cpp \
16 atom_graphnode.cpp \
17 atom_graphnodeinfo.cpp \
18 atom_particleinfo.cpp \
19 atom_trajectoryparticle.cpp \
20 atom_trajectoryparticleinfo.cpp
21ATOMHEADER = \
22 atom.hpp \
23 atom_atominfo.hpp \
24 atom_bondedparticle.hpp \
25 atom_bondedparticleinfo.hpp \
26 atom_graphnode.hpp \
27 atom_graphnodeinfo.hpp \
28 atom_particleinfo.hpp \
29 atom_trajectoryparticle.hpp \
30 atom_trajectoryparticleinfo.hpp
31
32LINALGSOURCE = \
33 ${HELPERSOURCE} \
34 gslmatrix.cpp \
35 gslvector.cpp \
36 linearsystemofequations.cpp \
37 Space.cpp \
38 vector.cpp
39
40LINALGHEADER = \
41 gslmatrix.hpp \
42 gslvector.hpp \
43 linearsystemofequations.hpp \
44 Space.hpp \
45 vector.hpp
46
47ANALYSISSOURCE = \
48 analysis_bonds.cpp \
49 analysis_correlation.cpp
50ANALYSISHEADER = \
51 analysis_bonds.hpp \
52 analysis_correlation.hpp
53
54ACTIONSSOURCE = \
55 Actions/Action.cpp \
56 Actions/ActionHistory.cpp \
57 Actions/ActionRegistry.cpp \
58 Actions/ActionSequence.cpp \
59 Actions/ErrorAction.cpp \
60 Actions/MakroAction.cpp \
61 Actions/ManipulateAtomsProcess.cpp \
62 Actions/MethodAction.cpp \
63 Actions/Process.cpp
64
65ACTIONSHEADER = \
66 Actions/Action.hpp \
67 Actions/ActionHistory.hpp \
68 Actions/ActionRegistry.hpp \
69 Actions/ActionSequence.hpp \
70 Actions/Calculation.hpp \
71 Actions/Calculation_impl.hpp \
72 Actions/ErrorAction.hpp \
73 Actions/MakroAction.hpp \
74 Actions/ManipulateAtomsProcess.hpp \
75 Actions/MapOfActions.hpp \
76 Actions/MethodAction.hpp \
77 Actions/Process.hpp
78
79EXCEPTIONSOURCE = Exceptions/CustomException.cpp \
80 Exceptions/LinearDependenceException.cpp \
81 Exceptions/MathException.cpp \
82 Exceptions/NotInvertibleException.cpp \
83 Exceptions/SkewException.cpp \
84 Exceptions/ZeroVectorException.cpp
85
86EXCEPTIONHEADER = Exceptions/CustomException.hpp \
87 Exceptions/LinearDependenceException.hpp \
88 Exceptions/MathException.hpp \
89 Exceptions/NotInvertibleException.hpp \
90 Exceptions/SkewException.hpp \
91 Exceptions/ZeroVectorException.hpp
92
93PARSERSOURCE = \
94 Parser/ChangeTracker.cpp \
95 Parser/FormatParser.cpp \
96 Parser/FormatParserStorage.cpp \
97 Parser/MpqcParser.cpp \
98 Parser/PcpParser.cpp \
99 Parser/TremoloParser.cpp \
100 Parser/XyzParser.cpp
101
102PARSERHEADER = \
103 Parser/ChangeTracker.hpp \
104 Parser/FormatParser.hpp \
105 Parser/FormatParserStorage.hpp \
106 Parser/MpqcParser.hpp \
107 Parser/PcpParser.hpp \
108 Parser/TremoloParser.hpp \
109 Parser/XyzParser.hpp
110
111PATTERNSOURCE = \
112 Patterns/Observer.cpp
113PATTERNHEADER = \
114 Patterns/Cacheable.hpp \
115 Patterns/Observer.hpp \
116 Patterns/Singleton.hpp
117
118SHAPESOURCE = \
119 Shapes/BaseShapes.cpp \
120 Shapes/Shape.cpp \
121 Shapes/ShapeOps.cpp
122SHAPEHEADER = \
123 Shapes/BaseShapes.hpp \
124 Shapes/Shape.hpp \
125 Shapes/ShapeOps.hpp
126
127
128DESCRIPTORSOURCE = Descriptors/AtomDescriptor.cpp \
129 Descriptors/AtomIdDescriptor.cpp \
130 Descriptors/AtomTypeDescriptor.cpp \
131 Descriptors/MoleculeDescriptor.cpp \
132 Descriptors/MoleculeIdDescriptor.cpp \
133 Descriptors/MoleculeNameDescriptor.cpp \
134 Descriptors/MoleculePtrDescriptor.cpp
135
136
137DESCRIPTORHEADER = Descriptors/AtomDescriptor.hpp \
138 Descriptors/AtomIdDescriptor.hpp \
139 Descriptors/AtomTypeDescriptor.hpp \
140 Descriptors/MoleculeDescriptor.hpp \
141 Descriptors/MoleculeIdDescriptor.hpp \
142 Descriptors/MoleculeNameDescriptor.hpp \
143 Descriptors/MoleculePtrDescriptor.hpp
144
145SOURCE = \
146 ${ANALYSISSOURCE} \
147 ${ACTIONSSOURCE} \
148 ${ATOMSOURCE} \
149 ${EXCEPTIONSOURCE} \
150 ${PATTERNSOURCE} \
151 ${PARSERSOURCE} \
152 ${SHAPESOURCE} \
153 ${DESCRIPTORSOURCE} \
154 ${HELPERSOURCE} \
155 bond.cpp \
156 bondgraph.cpp \
157 boundary.cpp \
158 Box.cpp \
159 CommandLineParser.cpp \
160 config.cpp \
161 ConfigFileBuffer.cpp \
162 element.cpp \
163 elements_db.cpp \
164 ellipsoid.cpp \
165 errorlogger.cpp \
166 graph.cpp \
167 helpers.cpp \
168 info.cpp \
169 leastsquaremin.cpp \
170 Line.cpp \
171 linkedcell.cpp \
172 log.cpp \
173 logger.cpp \
174 Matrix.cpp \
175 moleculelist.cpp \
176 molecule.cpp \
177 molecule_dynamics.cpp \
178 molecule_fragmentation.cpp \
179 molecule_geometry.cpp \
180 molecule_graph.cpp \
181 molecule_pointcloud.cpp \
182 parser.cpp \
183 periodentafel.cpp \
184 Plane.cpp \
185 Space.cpp \
186 tesselation.cpp \
187 tesselationhelpers.cpp \
188 ThermoStatContainer.cpp \
189 triangleintersectionlist.cpp \
190 vector.cpp \
191 vector_ops.cpp \
192 verbose.cpp \
193 World.cpp
194
195HEADER = \
196 ${ANALYSISHEADER} \
197 ${ACTIONSHEADER} \
198 ${ATOMHEADER} \
199 ${EXCEPTIONHEADER} \
200 ${PARSERHEADER} \
201 ${PATTERNHEADER} \
202 ${SHAPEHEADER} \
203 ${DESCRIPTORHEADER} \
204 bond.hpp \
205 bondgraph.hpp \
206 boundary.hpp \
207 Box.hpp \
208 CommandLineParser.hpp \
209 config.hpp \
210 ConfigFileBuffer.hpp \
211 defs.hpp \
212 element.hpp \
213 elements_db.hpp \
214 ellipsoid.hpp \
215 errorlogger.hpp \
216 graph.hpp \
217 helpers.hpp \
218 info.hpp \
219 leastsquaremin.hpp \
220 Line.hpp \
221 linkedcell.hpp \
222 lists.hpp \
223 log.hpp \
224 logger.hpp \
225 Matrix.hpp \
226 molecule.hpp \
227 molecule_template.hpp \
228 parser.hpp \
229 periodentafel.hpp \
230 Plane.hpp \
231 stackclass.hpp \
232 tesselation.hpp \
233 tesselationhelpers.hpp \
234 ThermoStatContainer.hpp \
235 triangleintersectionlist.hpp \
236 verbose.hpp \
237 vector_ops.hpp \
238 World.hpp
239
240# the following files are no longer used:
241# memoryallocator.hpp \
242# memoryallocator.cpp \
243# memoryusageobserver.hpp \
244# memoryusageobserver.cpp
245
246BOOST_LIB = $(BOOST_LDFLAGS) $(BOOST_MPL_LIB)
247INCLUDES = -I$(top_srcdir)/src/unittests -I$(top_srcdir)/src/Actions -I$(top_srcdir)/src/UIElements
248
249noinst_LIBRARIES = libmolecuilder.a libgslwrapper.a libparser.a
250bin_PROGRAMS = molecuilder joiner analyzer
251molecuilderdir = ${bindir}
252libmolecuilder_a_SOURCES = ${SOURCE} ${HEADER}
253libparser_a_SOURCES = ${PARSERSOURCE} ${PARSERHEADER}
254libgslwrapper_a_SOURCES = ${LINALGSOURCE} ${LINALGHEADER}
255molecuilder_DATA = elements.db valence.db orbitals.db Hbonddistance.db Hbondangle.db
256molecuilder_LDFLAGS = $(BOOST_LDFLAGS)
257molecuilder_SOURCES = builder.cpp
258molecuilder_LDADD = UIElements/libMolecuilderUI.a Actions/libMolecuilderActions.a libmolecuilder.a libparser.a libgslwrapper.a $(BOOST_LIB) ${BOOST_THREAD_LIB} ${BOOST_PROGRAM_OPTIONS_LIB}
259joiner_SOURCES = joiner.cpp datacreator.cpp parser.cpp datacreator.hpp helpers.hpp parser.hpp periodentafel.hpp
260joiner_LDADD = libmolecuilder.a $(BOOST_LIB) ${BOOST_THREAD_LIB}
261analyzer_SOURCES = analyzer.cpp datacreator.cpp parser.cpp helpers.hpp periodentafel.hpp parser.hpp datacreator.hpp
262analyzer_LDADD = libmolecuilder.a $(BOOST_LIB) ${BOOST_THREAD_LIB}
263
264FORCE:
265$(srcdir)/.git-version: FORCE
266 @if (test -d $(top_srcdir)/../.git && cd $(srcdir) && git describe HEAD) > .git-version-t 2>/dev/null \
267 && ! diff .git-version-t $(srcdir)/.git-version >/dev/null 2>&1; then \
268 mv -f .git-version-t $(srcdir)/.git-version; \
269 else \
270 rm -f .git-version-t; \
271 fi
272
273EXTRA_DIST = $(srcdir)/.git-version
274
275$(srcdir)/version.c: $(srcdir)/.git-version
276 echo "const char *ESPACKVersion = \"$(PACKAGE_NAME) -- git version: "`cat $(srcdir)/.git-version`"\";" > $@
277
278molecuilder_SOURCES += $(srcdir)/version.c
Note: See TracBrowser for help on using the repository browser.