source: src/Makefile.am@ d223d5

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

Merge branch 'SharedLibraries' into stable

  • BUGFIX: MemDebug.cpp in case of no MEMDEBUG defined, iosfwd include was missing.

Conflicts:

src/Actions/AnalysisAction/PointCorrelationAction.hpp
src/Actions/Makefile.am
src/Makefile.am
src/UIElements/Makefile.am
src/unittests/Makefile.am
src/unittests/ShapeUnittest.cpp

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