source: src/Makefile.am@ 0bbfa1

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 0bbfa1 was a564be, checked in by Frederik Heber <heber@…>, 14 years ago

Removed ancient StackClass, replaced by std::deque.

  • all PopLast replaced by pop_front.
  • all PopFirst replaced by pop_front.
  • and we have two remove items in two steps, first get item, then pop.
  • Property mode set to 100644
File size: 12.4 KB
Line 
1# PLEASE adhere to the alphabetical ordering in this Makefile!
2# Also indentation by a single tab
3
4SUBDIRS = Actions Exceptions Helpers LinearAlgebra Parser UIElements
5
6AM_CPPFLAGS = ${BOOST_CPPFLAGS}
7
8ATOMSOURCE = \
9 atom.cpp \
10 AtomicInfo.cpp \
11 atom_atominfo.cpp \
12 atom_bondedparticle.cpp \
13 atom_bondedparticleinfo.cpp \
14 atom_graphnode.cpp \
15 atom_graphnodeinfo.cpp \
16 atom_particleinfo.cpp \
17 atom_trajectoryparticle.cpp \
18 atom_trajectoryparticleinfo.cpp
19ATOMHEADER = \
20 atom.hpp \
21 AtomicInfo.hpp \
22 atom_atominfo.hpp \
23 atom_bondedparticle.hpp \
24 atom_bondedparticleinfo.hpp \
25 atom_graphnode.hpp \
26 atom_graphnodeinfo.hpp \
27 atom_particleinfo.hpp \
28 atom_trajectoryparticle.hpp \
29 atom_trajectoryparticleinfo.hpp
30
31ANALYSISSOURCE = \
32 analysis_bonds.cpp \
33 analysis_correlation.cpp
34ANALYSISHEADER = \
35 analysis_bonds.hpp \
36 analysis_correlation.hpp
37
38ACTIONSSOURCE = \
39 Actions/Action.cpp \
40 Actions/ActionHistory.cpp \
41 Actions/ActionRegistry.cpp \
42 Actions/ActionSequence.cpp \
43 Actions/ActionTraits.cpp \
44 Actions/ErrorAction.cpp \
45 Actions/MakroAction.cpp \
46 Actions/ManipulateAtomsProcess.cpp \
47 Actions/MethodAction.cpp \
48 Actions/OptionRegistry.cpp \
49 Actions/OptionTrait.cpp \
50 Actions/Process.cpp
51
52ACTIONSHEADER = \
53 Actions/Action.hpp \
54 Actions/ActionHistory.hpp \
55 Actions/ActionRegistry.hpp \
56 Actions/ActionSequence.hpp \
57 Actions/ActionTraits.hpp \
58 Actions/Calculation.hpp \
59 Actions/Calculation_impl.hpp \
60 Actions/ErrorAction.hpp \
61 Actions/MakroAction.hpp \
62 Actions/ManipulateAtomsProcess.hpp \
63 Actions/MethodAction.hpp \
64 Actions/OptionRegistry.hpp \
65 Actions/OptionTrait.hpp \
66 Actions/Process.hpp
67
68
69PATTERNSOURCE = \
70 Patterns/Observer.cpp
71PATTERNHEADER = \
72 Patterns/Cacheable.hpp \
73 Patterns/Observer.hpp \
74 Patterns/Singleton.hpp
75
76SHAPESOURCE = \
77 Shapes/BaseShapes.cpp \
78 Shapes/Shape.cpp \
79 Shapes/ShapeOps.cpp
80SHAPEHEADER = \
81 Shapes/BaseShapes.hpp \
82 Shapes/Shape.hpp \
83 Shapes/ShapeOps.hpp
84
85
86DESCRIPTORSOURCE = Descriptors/AtomDescriptor.cpp \
87 Descriptors/AtomIdDescriptor.cpp \
88 Descriptors/AtomSelectionDescriptor.cpp \
89 Descriptors/AtomShapeDescriptor.cpp \
90 Descriptors/AtomTypeDescriptor.cpp \
91 Descriptors/MoleculeDescriptor.cpp \
92 Descriptors/MoleculeFormulaDescriptor.cpp \
93 Descriptors/MoleculeIdDescriptor.cpp \
94 Descriptors/MoleculeNameDescriptor.cpp \
95 Descriptors/MoleculePtrDescriptor.cpp \
96 Descriptors/MoleculeSelectionDescriptor.cpp
97
98
99DESCRIPTORHEADER = Descriptors/AtomDescriptor.hpp \
100 Descriptors/AtomIdDescriptor.hpp \
101 Descriptors/AtomSelectionDescriptor.hpp \
102 Descriptors/AtomShapeDescriptor.hpp \
103 Descriptors/AtomTypeDescriptor.hpp \
104 Descriptors/MoleculeDescriptor.hpp \
105 Descriptors/MoleculeFormulaDescriptor.hpp \
106 Descriptors/MoleculeIdDescriptor.hpp \
107 Descriptors/MoleculeNameDescriptor.hpp \
108 Descriptors/MoleculePtrDescriptor.hpp \
109 Descriptors/MoleculeSelectionDescriptor.cpp
110
111THERMOSTATSOURCE = \
112 Thermostats/Berendsen.cpp \
113 Thermostats/GaussianThermostat.cpp \
114 Thermostats/Langevin.cpp \
115 Thermostats/NoseHoover.cpp \
116 Thermostats/NoThermostat.cpp \
117 Thermostats/Thermostat.cpp \
118 Thermostats/Woodcock.cpp
119
120THERMOSTATHEADER = \
121 Thermostats/Berendsen.hpp \
122 Thermostats/GaussianThermostat.hpp \
123 Thermostats/Langevin.hpp \
124 Thermostats/NoseHoover.hpp \
125 Thermostats/NoThermostat.hpp \
126 Thermostats/Thermostat.hpp \
127 Thermostats/Woodcock.hpp
128
129TESSELATIONSOURCE = \
130 BoundaryLineSet.cpp \
131 BoundaryPointSet.cpp \
132 BoundaryPolygonSet.cpp \
133 BoundaryTriangleSet.cpp \
134 CandidateForTesselation.cpp \
135 PointCloud.cpp \
136 tesselation.cpp \
137 tesselationhelpers.cpp \
138 TesselPoint.cpp
139
140TESSELATIONHEADER = \
141 BoundaryLineSet.hpp \
142 BoundaryPointSet.hpp \
143 BoundaryPolygonSet.hpp \
144 BoundaryTriangleSet.hpp \
145 CandidateForTesselation.hpp \
146 PointCloud.hpp \
147 tesselation.hpp \
148 tesselationhelpers.hpp \
149 TesselPoint.hpp
150
151MOLECUILDERSOURCE = \
152 ${ANALYSISSOURCE} \
153 ${ACTIONSSOURCE} \
154 ${ATOMSOURCE} \
155 ${PATTERNSOURCE} \
156 ${SHAPESOURCE} \
157 ${DESCRIPTORSOURCE} \
158 ${THERMOSTATSOURCE} \
159 ${TESSELATIONSOURCE} \
160 bond.cpp \
161 bondgraph.cpp \
162 boundary.cpp \
163 Box.cpp \
164 config.cpp \
165 ConfigFileBuffer.cpp \
166 element.cpp \
167 elements_db.cpp \
168 ellipsoid.cpp \
169 Formula.cpp \
170 graph.cpp \
171 linkedcell.cpp \
172 moleculelist.cpp \
173 molecule.cpp \
174 molecule_dynamics.cpp \
175 molecule_fragmentation.cpp \
176 molecule_geometry.cpp \
177 molecule_graph.cpp \
178 molecule_pointcloud.cpp \
179 parser.cpp \
180 periodentafel.cpp \
181 ThermoStatContainer.cpp \
182 triangleintersectionlist.cpp \
183 UIElements/UIFactory.cpp \
184 World.cpp
185
186MOLECUILDERHEADER = \
187 ${ANALYSISHEADER} \
188 ${ACTIONSHEADER} \
189 ${ATOMHEADER} \
190 ${PATTERNHEADER} \
191 ${SHAPEHEADER} \
192 ${DESCRIPTORHEADER} \
193 ${THERMOSTATHEADER} \
194 ${TESSELATIONHEADER} \
195 bond.hpp \
196 bondgraph.hpp \
197 boundary.hpp \
198 Box.hpp \
199 config.hpp \
200 ConfigFileBuffer.hpp \
201 element.hpp \
202 elements_db.hpp \
203 ellipsoid.hpp \
204 Formula.hpp \
205 graph.hpp \
206 linkedcell.hpp \
207 lists.hpp \
208 molecule.hpp \
209 parser.hpp \
210 periodentafel.hpp \
211 ThermoStatContainer.hpp \
212 triangleintersectionlist.hpp \
213 UIElements/UIFactory.hpp \
214 World.hpp
215
216lib_LTLIBRARIES = libMolecuilder-@MOLECUILDER_API_VERSION@.la
217libMolecuilder_includedir = $(includedir)/molecuilder-$(MOLECUILDER_API_VERSION)/Actions/
218libMolecuilder_LIBS = \
219 LinearAlgebra/libMolecuilderLinearAlgebra-@MOLECUILDER_API_VERSION@.la \
220 ${BOOST_PROGRAM_OPTIONS_LIB}
221
222# UIElements/libMolecuilderUI.a \
223 Actions/libMolecuilderActions-@MOLECUILDER_API_VERSION@.la \
224 Parser/libMolecuilderParser-@MOLECUILDER_API_VERSION@.la \
225 Exceptions/libMolecuilderExceptions-@MOLECUILDER_API_VERSION@.la \
226 Helpers/libMolecuilderHelpers-@MOLECUILDER_API_VERSION@.la \
227 $(BOOST_LIB) \
228 ${BOOST_THREAD_LIB}
229
230nobase_libMolecuilder_include_HEADERS = ${MOLECUILDERHEADER}
231
232## Define the source file list for the "libexample-@MOLECUILDER_API_VERSION@.la"
233## target. Note that @MOLECUILDER_API_VERSION@ is not interpreted by Automake and
234## will therefore be treated as if it were literally part of the target name,
235## and the variable name derived from that.
236## The file extension .cc is recognized by Automake, and makes it produce
237## rules which invoke the C++ compiler to produce a libtool object file (.lo)
238## from each source file. Note that it is not necessary to list header files
239## which are already listed elsewhere in a _HEADERS variable assignment.
240libMolecuilder_@MOLECUILDER_API_VERSION@_la_SOURCES = ${MOLECUILDERSOURCE} $(srcdir)/version.c
241
242## Instruct libtool to include ABI version information in the generated shared
243## library file (.so). The library ABI version is defined in configure.ac, so
244## that all version information is kept in one place.
245libMolecuilder_@MOLECUILDER_API_VERSION@_la_LDFLAGS = -version-info $(MOLECUILDER_SO_VERSION)
246
247## The generated configuration header is installed in its own subdirectory of
248## $(libdir). The reason for this is that the configuration information put
249## into this header file describes the target platform the installed library
250## has been built for. Thus the file must not be installed into a location
251## intended for architecture-independent files, as defined by the Filesystem
252## Hierarchy Standard (FHS).
253## The nodist_ prefix instructs Automake to not generate rules for including
254## the listed files in the distribution on 'make dist'. Files that are listed
255## in _HEADERS variables are normally included in the distribution, but the
256## configuration header file is generated at configure time and should not be
257## shipped with the source tarball.
258libMolecuilder_libincludedir = $(libdir)/molecuilder-$(MOLECUILDER_API_VERSION)/include
259nodist_libMolecuilder_libinclude_HEADERS = $(top_builddir)/libmolecuilder_config.h
260
261## Install the generated pkg-config file (.pc) into the expected location for
262## architecture-dependent package configuration information. Occasionally,
263## pkg-config files are also used for architecture-independent data packages,
264## in which case the correct install location would be $(datadir)/pkgconfig.
265pkgconfigdir = $(libdir)/pkgconfig
266pkgconfig_DATA = $(top_builddir)/molecuilder-$(MOLECUILDER_API_VERSION).pc
267
268
269BOOST_LIB = $(BOOST_LDFLAGS) $(BOOST_MPL_LIB) $(BOOST_PROGRAM_OPTIONS_LIB) $(BOOST_FILESYSTEM_LIB) $(BOOST_SYSTEM_LIB) $(BOOST_THREAD_LIB)
270INCLUDES = -I$(top_srcdir)/src/unittests -I$(top_srcdir)/src/Actions -I$(top_srcdir)/src/UIElements
271
272noinst_LIBRARIES = libmenu.a
273bin_PROGRAMS = molecuilder molecuildergui joiner analyzer SubspaceFactorizer
274EXTRA_PROGRAMS = unity
275
276molecuilderdir = ${bindir}
277
278libmenu_a_SOURCES = ${UISOURCE} ${UIHEADER}
279
280molecuilder_DATA = elements.db valence.db orbitals.db Hbonddistance.db Hbondangle.db
281
282SubspaceFactorizer_CXXFLAGS = $(BOOST_CPPFLAGS)
283SubspaceFactorizer_SOURCES = SubspaceFactorizer.cpp
284SubspaceFactorizer_LDADD = \
285 LinearAlgebra/libMolecuilderLinearAlgebra-@MOLECUILDER_API_VERSION@.la \
286 Exceptions/libMolecuilderExceptions-@MOLECUILDER_API_VERSION@.la \
287 Helpers/libMolecuilderHelpers-@MOLECUILDER_API_VERSION@.la \
288 $(GSLLIB) \
289 $(BOOST_LIB)
290
291molecuilder_CXXFLAGS = $(BOOST_CPPFLAGS)
292#molecuilder_CXXFLAGS += -DNO_CACHING
293molecuilder_LDFLAGS = $(BOOST_LIB)
294molecuilder_SOURCES = builder.cpp
295molecuilder_LDADD = \
296 UIElements/libMolecuilderUI-@MOLECUILDER_API_VERSION@.la \
297 Actions/libMolecuilderActions-@MOLECUILDER_API_VERSION@.la \
298 libMolecuilder-@MOLECUILDER_API_VERSION@.la \
299 Parser/libMolecuilderParser-@MOLECUILDER_API_VERSION@.la \
300 LinearAlgebra/libMolecuilderLinearAlgebra-@MOLECUILDER_API_VERSION@.la \
301 Exceptions/libMolecuilderExceptions-@MOLECUILDER_API_VERSION@.la \
302 Helpers/libMolecuilderHelpers-@MOLECUILDER_API_VERSION@.la \
303 $(BOOST_LIB)
304
305#Stuff for building the GUI using Qt
306molecuildergui_SOURCES = builder.cpp
307molecuildergui_CXXFLAGS = $(BOOST_CPPFLAGS) -DUSE_GUI_QT
308molecuildergui_LDFLAGS = $(BOOST_LIB)
309
310unity_SOURCES = unity.cpp
311unity_LDADD = $(BOOST_LIB)
312
313molecuildergui_LDADD = \
314 UIElements/libMolecuilderUI-@MOLECUILDER_API_VERSION@.la \
315 UIElements/libMolecuilderQtUI-@MOLECUILDER_API_VERSION@.la \
316 Actions/libMolecuilderActions-@MOLECUILDER_API_VERSION@.la \
317 libMolecuilder-@MOLECUILDER_API_VERSION@.la \
318 Parser/libMolecuilderParser-@MOLECUILDER_API_VERSION@.la \
319 LinearAlgebra/libMolecuilderLinearAlgebra-@MOLECUILDER_API_VERSION@.la \
320 Exceptions/libMolecuilderExceptions-@MOLECUILDER_API_VERSION@.la \
321 Helpers/libMolecuilderHelpers-@MOLECUILDER_API_VERSION@.la \
322 $(BOOST_LIB) \
323 ${GUI_LIBS}
324
325joiner_SOURCES = joiner.cpp datacreator.cpp datacreator.hpp periodentafel.hpp
326joiner_LDADD = \
327 UIElements/libMolecuilderUI-@MOLECUILDER_API_VERSION@.la \
328 Actions/libMolecuilderActions-@MOLECUILDER_API_VERSION@.la \
329 libMolecuilder-@MOLECUILDER_API_VERSION@.la \
330 Parser/libMolecuilderParser-@MOLECUILDER_API_VERSION@.la \
331 LinearAlgebra/libMolecuilderLinearAlgebra-@MOLECUILDER_API_VERSION@.la \
332 Exceptions/libMolecuilderExceptions-@MOLECUILDER_API_VERSION@.la \
333 Helpers/libMolecuilderHelpers-@MOLECUILDER_API_VERSION@.la \
334 $(BOOST_LIB)
335
336analyzer_SOURCES = analyzer.cpp datacreator.cpp periodentafel.hpp datacreator.hpp
337analyzer_LDADD = \
338 UIElements/libMolecuilderUI-@MOLECUILDER_API_VERSION@.la \
339 Actions/libMolecuilderActions-@MOLECUILDER_API_VERSION@.la \
340 libMolecuilder-@MOLECUILDER_API_VERSION@.la \
341 Parser/libMolecuilderParser-@MOLECUILDER_API_VERSION@.la \
342 LinearAlgebra/libMolecuilderLinearAlgebra-@MOLECUILDER_API_VERSION@.la \
343 Exceptions/libMolecuilderExceptions-@MOLECUILDER_API_VERSION@.la \
344 Helpers/libMolecuilderHelpers-@MOLECUILDER_API_VERSION@.la \
345 $(BOOST_LIB)
346
347#EXTRA_DIST = ${molecuilder_DATA}
348
349FORCE:
350$(srcdir)/.git-version: FORCE
351 @if (test -d $(top_srcdir)/.git && cd $(srcdir) \
352 && { git describe --dirty --always || git describe; } ) > .git-version-t 2>/dev/null \
353 && ! diff .git-version-t $(srcdir)/.git-version >/dev/null 2>&1; then \
354 mv -f .git-version-t $(srcdir)/.git-version; \
355 else \
356 rm -f .git-version-t; \
357 fi
358
359EXTRA_DIST = $(srcdir)/.git-version
360
361$(srcdir)/version.c: $(srcdir)/.git-version
362 echo "const char *MOLECUILDERVERSION = \"$(PACKAGE_NAME) version "`cat $(srcdir)/.git-version`"\";" > $@
363
364
365unity.cpp: ${MOLECUILDERSOURCE} ${MOLECUILDERHEADER}
366 echo "#include \"$(srcdir)/Helpers/MemDebug.cpp\"" > unity.cpp; \
367 list='$(MOLECUILDERSOURCE)'; for file in $$list; do \
368 echo "#include \"$(srcdir)/$$file\"" >> unity.cpp; \
369 done; \
370 subdirs='$(SUBDIRS)';for directory in $$subdirs; do\
371 olddir=$$PWD;\
372 cd $$directory && make unity.cpp;\
373 cd $$olddir;\
374 echo "#include \"$$directory/unity.cpp\"" >> unity.cpp;\
375 done;\
376 echo "#include \"$(srcdir)/builder.cpp\"" >> unity.cpp;
377 echo "#include \"$(srcdir)/version.c\"" >> unity.cpp;
378
379MOSTLYCLEANFILES = unity.cpp
380
Note: See TracBrowser for help on using the repository browser.