source: src/Makefile.am@ 2affd1

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 2affd1 was d4ba3f, checked in by Frederik Heber <heber@…>, 9 years ago

Extracted common code out of Molecule/AtomObserver into EntityObserver.

  • Property mode set to 100644
File size: 15.8 KB
RevLine 
[efc3cb]1# PLEASE adhere to the alphabetical ordering in this Makefile!
2# Also indentation by a single tab
3
[455573]4MOSTLYCLEANFILES =
5lib_LTLIBRARIES =
6noinst_LTLIBRARIES =
[2d31e1]7pyexec_LTLIBRARIES =
[aee2da]8BUILT_SOURCES =
[bd8788]9bin_PROGRAMS =
[fd4d5e]10EXTRA_DIST =
[455573]11
[748fc7]12# libMolecuilder.la requires the libraries listed below
[004d5c]13
[748fc7]14include Helpers/Makefile.am
[455573]15include Shapes/Makefile.am
[fec597]16include Tesselation/Makefile.am
[748fc7]17
18# then comes the library itself
[5079a0]19
[a10cc0]20AM_LDFLAGS = -ldl ${BOOST_LDFLAGS} ${CodePatterns_LDFLAGS}
[3b35e7]21AM_CPPFLAGS = \
22 -I$(top_srcdir)/src/unittests \
23 -I$(top_srcdir)/src/Actions \
24 -I$(top_srcdir)/src/UIElements \
25 -I$(top_srcdir)/LinearAlgebra/src \
26 ${BOOST_CPPFLAGS} \
27 ${CodePatterns_CFLAGS}
28
[d5240d]29
[129204]30BONDSOURCE = \
31 Bond/bond.cpp \
[3f7587]32 Bond/bond_observable.cpp \
[af9be32]33 Bond/BondInfo.cpp \
[129204]34 Bond/GraphEdge.cpp
35
36BONDHEADER = \
37 Bond/bond.hpp \
[3f7587]38 Bond/bond_observable.hpp \
[af9be32]39 Bond/BondInfo.hpp \
[129204]40 Bond/GraphEdge.hpp
[efc3cb]41
[c42e60]42DESCRIPTORSOURCE = \
[786d28]43 Descriptors/AtomDescriptor.cpp \
[efc3cb]44 Descriptors/AtomIdDescriptor.cpp \
[a58c16]45 Descriptors/AtomNameDescriptor.cpp \
[b49568]46 Descriptors/AtomOfMoleculeDescriptor.cpp \
[c42e60]47 Descriptors/AtomOfMoleculeSelectionDescriptor.cpp \
[61c364]48 Descriptors/AtomOrderDescriptor.cpp \
[48dcbd]49 Descriptors/AtomSelectionDescriptor.cpp \
[6d858c]50 Descriptors/AtomShapeDescriptor.cpp \
[efc3cb]51 Descriptors/AtomTypeDescriptor.cpp \
[7afb77]52 Descriptors/AtomsWithinDistanceOfDescriptor.cpp \
[efc3cb]53 Descriptors/MoleculeDescriptor.cpp \
[6e7147]54 Descriptors/MoleculeFormulaDescriptor.cpp \
[e05826]55 Descriptors/MoleculeIdDescriptor.cpp \
[e6317b]56 Descriptors/MoleculeNameDescriptor.cpp \
[c42e60]57 Descriptors/MoleculeOfAtomSelectionDescriptor.cpp \
[92d756]58 Descriptors/MoleculeOrderDescriptor.cpp \
[cf0ca1]59 Descriptors/MoleculePtrDescriptor.cpp \
60 Descriptors/MoleculeSelectionDescriptor.cpp
[57adc7]61
[75ac0c]62
[c42e60]63DESCRIPTORHEADER = \
[a58c16]64 Descriptors/AtomDescriptor.hpp \
[efc3cb]65 Descriptors/AtomIdDescriptor.hpp \
[a58c16]66 Descriptors/AtomNameDescriptor.hpp \
[b49568]67 Descriptors/AtomOfMoleculeDescriptor.hpp \
[c42e60]68 Descriptors/AtomOfMoleculeSelectionDescriptor.hpp \
[61c364]69 Descriptors/AtomOrderDescriptor.hpp \
[48dcbd]70 Descriptors/AtomSelectionDescriptor.hpp \
[6d858c]71 Descriptors/AtomShapeDescriptor.hpp \
[efc3cb]72 Descriptors/AtomTypeDescriptor.hpp \
[7afb77]73 Descriptors/AtomsWithinDistanceOfDescriptor.hpp \
[36f507]74 Descriptors/DescriptorBase.hpp \
[efc3cb]75 Descriptors/MoleculeDescriptor.hpp \
[6e7147]76 Descriptors/MoleculeFormulaDescriptor.hpp \
[e30ce8]77 Descriptors/MoleculeIdDescriptor.hpp \
[31b09e]78 Descriptors/MoleculeNameDescriptor.hpp \
[c42e60]79 Descriptors/MoleculeOfAtomSelectionDescriptor.hpp \
[92d756]80 Descriptors/MoleculeOrderDescriptor.hpp \
[cf0ca1]81 Descriptors/MoleculePtrDescriptor.hpp \
[36f507]82 Descriptors/MoleculeSelectionDescriptor.hpp \
[feb5d0]83 Descriptors/SelectiveConstIterator.hpp \
[36f507]84 Descriptors/SelectiveIterator.hpp
[c42e60]85
86DESCRIPTORIMPLHEADER = \
[a58c16]87 Descriptors/AtomDescriptor_impl.hpp \
[c42e60]88 Descriptors/AtomIdDescriptor_impl.hpp \
[a58c16]89 Descriptors/AtomNameDescriptor_impl.hpp \
[b49568]90 Descriptors/AtomOfMoleculeDescriptor_impl.hpp \
[c42e60]91 Descriptors/AtomOfMoleculeSelectionDescriptor_impl.hpp \
[61c364]92 Descriptors/AtomOrderDescriptor_impl.hpp \
[c42e60]93 Descriptors/AtomSelectionDescriptor_impl.hpp \
94 Descriptors/AtomShapeDescriptor_impl.hpp \
95 Descriptors/AtomTypeDescriptor_impl.hpp \
[7afb77]96 Descriptors/AtomsWithinDistanceOfDescriptor_impl.hpp \
[36f507]97 Descriptors/DescriptorBase_impl.hpp \
[c42e60]98 Descriptors/MoleculeDescriptor_impl.hpp \
99 Descriptors/MoleculeFormulaDescriptor_impl.hpp \
100 Descriptors/MoleculeIdDescriptor_impl.hpp \
101 Descriptors/MoleculeNameDescriptor_impl.hpp \
102 Descriptors/MoleculeOfAtomSelectionDescriptor_impl.hpp \
103 Descriptors/MoleculeOrderDescriptor_impl.hpp \
104 Descriptors/MoleculePtrDescriptor_impl.hpp \
[36f507]105 Descriptors/MoleculeSelectionDescriptor_impl.hpp \
[feb5d0]106 Descriptors/SelectiveConstIterator_impl.hpp \
[36f507]107 Descriptors/SelectiveIterator_impl.hpp
[3f9eba]108
[9e23a3]109DYNAMICSSOURCE = \
110 Dynamics/MinimiseConstrainedPotential.cpp
111
112DYNAMICSHEADER = \
[51cdfd]113 Dynamics/AtomicForceManipulator.hpp \
[1a48d2]114 Dynamics/ForceAnnealing.hpp \
[20943b]115 Dynamics/LinearInterpolationBetweenSteps.hpp \
[8009ce]116 Dynamics/MinimiseConstrainedPotential.hpp \
[435065]117 Dynamics/OutputTemperature.hpp \
118 Dynamics/VerletForceIntegration.hpp
[9e23a3]119
[194649]120THERMOSTATSOURCE = \
121 Thermostats/Berendsen.cpp \
122 Thermostats/GaussianThermostat.cpp \
123 Thermostats/Langevin.cpp \
124 Thermostats/NoseHoover.cpp \
125 Thermostats/NoThermostat.cpp \
126 Thermostats/Thermostat.cpp \
[ab26c3]127 Thermostats/ThermoStatContainer.cpp \
[194649]128 Thermostats/Woodcock.cpp
[d193a2]129
[194649]130THERMOSTATHEADER = \
131 Thermostats/Berendsen.hpp \
132 Thermostats/GaussianThermostat.hpp \
133 Thermostats/Langevin.hpp \
134 Thermostats/NoseHoover.hpp \
135 Thermostats/NoThermostat.hpp \
136 Thermostats/Thermostat.hpp \
[262ecc]137 Thermostats/ThermoStatContainer.hpp \
[194649]138 Thermostats/Woodcock.hpp
[d193a2]139
[255971]140MOLECUILDERSOURCE = \
[129204]141 ${BONDSOURCE} \
[efc3cb]142 ${DESCRIPTORSOURCE} \
[9e23a3]143 ${DYNAMICSSOURCE} \
[194649]144 ${THERMOSTATSOURCE} \
[87ec81]145 Shapes/ShapeFactory.cpp \
[5e6534]146 AtomIdSet.cpp \
[83c09a]147 Box.cpp \
[dd067a]148 Box_BoundaryConditions.cpp \
[efc3cb]149 config.cpp \
[6f43ab]150 Formula.cpp \
[d3abb1]151 MoleculeLeafClass.cpp \
[5d8f4f]152 MoleculeObserver.cpp \
[efc3cb]153 moleculelist.cpp \
154 molecule.cpp \
155 molecule_geometry.cpp \
156 molecule_graph.cpp \
[112f90]157 UIElements/UIFactory.cpp \
[9cd9ab]158 version.c \
[f649de]159 World.cpp \
160 WorldTime.cpp
[5f612ee]161
[255971]162MOLECUILDERHEADER = \
[129204]163 ${BONDHEADER} \
[efc3cb]164 ${DESCRIPTORHEADER} \
[c42e60]165 ${DESCRIPTORIMPLHEADER} \
[9e23a3]166 ${DYNAMICSHEADER} \
[194649]167 ${THERMOSTATHEADER} \
[87ec81]168 Shapes/ShapeFactory.hpp \
[5e6534]169 AtomIdSet.hpp \
[83c09a]170 Box.hpp \
[dd067a]171 Box_BoundaryConditions.hpp \
[efc3cb]172 config.hpp \
[d4ba3f]173 EntityObserver.hpp \
174 EntityObserver_impl.hpp \
[6f43ab]175 Formula.hpp \
[3e4fb6]176 IdPool.hpp \
177 IdPool_impl.hpp \
[a292f6]178 IdPool_policy.hpp \
[d3abb1]179 MoleculeLeafClass.hpp \
[262ecc]180 MoleculeListClass.hpp \
[5d8f4f]181 MoleculeObserver.hpp \
[efc3cb]182 molecule.hpp \
[36f507]183 types.hpp \
[7d0a4e]184 ThreadGuard.hpp \
[112f90]185 UIElements/UIFactory.hpp \
[9cd9ab]186 version.h \
[6bb605]187 World.hpp \
[8544a33]188 World_calculations.hpp \
[f649de]189 WorldTime.hpp
[3027f8]190
[748fc7]191lib_LTLIBRARIES += libMolecuilder.la
[e5bf2b]192libMolecuilder_la_includedir = $(includedir)/MoleCuilder/
[353326]193libMolecuilder_la_LDFLAGS = \
194 $(AM_LDFLAGS) \
195 $(CodePatterns_LDFLAGS) \
196 $(BOOST_SYSTEM_LDFLAGS) \
197 $(BOOST_THREAD_LDFLAGS)
198libMolecuilder_la_LIBADD = \
[fec597]199 libMolecuilderTesselation.la \
[353326]200 libMolecuilderShapes.la \
[748fc7]201 libMolecuilderHelpers.la \
[353326]202 $(top_builddir)/LinearAlgebra/src/LinearAlgebra/libLinearAlgebra.la \
203 ${CodePatterns_LIBS} \
204 $(BOOST_SERIALIZATION_LIBS) \
205 $(BOOST_PROGRAM_OPTIONS_LIBS) \
206 $(BOOST_FILESYSTEM_LIBS) \
207 $(BOOST_SYSTEM_LIBS) \
208 $(BOOST_THREAD_LIBS)
[255971]209
[e5bf2b]210nobase_libMolecuilder_la_include_HEADERS = ${MOLECUILDERHEADER}
[255971]211
212## Define the source file list for the "libexample-@MOLECUILDER_API_VERSION@.la"
213## target. Note that @MOLECUILDER_API_VERSION@ is not interpreted by Automake and
214## will therefore be treated as if it were literally part of the target name,
215## and the variable name derived from that.
216## The file extension .cc is recognized by Automake, and makes it produce
217## rules which invoke the C++ compiler to produce a libtool object file (.lo)
218## from each source file. Note that it is not necessary to list header files
219## which are already listed elsewhere in a _HEADERS variable assignment.
[9cd9ab]220libMolecuilder_la_SOURCES = ${MOLECUILDERSOURCE}
[255971]221
222## Instruct libtool to include ABI version information in the generated shared
223## library file (.so). The library ABI version is defined in configure.ac, so
224## that all version information is kept in one place.
[748fc7]225libMolecuilder_la_LDFLAGS += -version-info $(MOLECUILDER_SO_VERSION)
[255971]226
227## The generated configuration header is installed in its own subdirectory of
228## $(libdir). The reason for this is that the configuration information put
229## into this header file describes the target platform the installed library
230## has been built for. Thus the file must not be installed into a location
231## intended for architecture-independent files, as defined by the Filesystem
232## Hierarchy Standard (FHS).
233## The nodist_ prefix instructs Automake to not generate rules for including
234## the listed files in the distribution on 'make dist'. Files that are listed
235## in _HEADERS variables are normally included in the distribution, but the
236## configuration header file is generated at configure time and should not be
237## shipped with the source tarball.
[e5bf2b]238libMolecuilder_la_libincludedir = $(libdir)/MoleCuilder/include
239nodist_libMolecuilder_la_libinclude_HEADERS = $(top_builddir)/libmolecuilder_config.h
[255971]240
241## Install the generated pkg-config file (.pc) into the expected location for
242## architecture-dependent package configuration information. Occasionally,
243## pkg-config files are also used for architecture-independent data packages,
244## in which case the correct install location would be $(datadir)/pkgconfig.
245pkgconfigdir = $(libdir)/pkgconfig
[acbe1b]246pkgconfig_DATA = $(top_builddir)/MoleCuilder.pc
[255971]247
[748fc7]248# then we compile the remainder of all other libraries, especially
249# libMolecuilderUI.la, which requires libMolecuilder.la on install
250
251include Actions/Makefile.am
252include Analysis/Makefile.am
253include Atom/Makefile.am
254include Element/Makefile.am
255include Filling/Makefile.am
256include Fragmentation/Makefile.am
257include Fragmentation/Automation/Makefile.am
258include Fragmentation/Summation/Containers/Makefile.am
259include Fragmentation/Summation/Converter/Makefile.am
260include Fragmentation/Summation/Makefile.am
261include Fragmentation/Summation/SetValues/Makefile.am
262include FunctionApproximation/Makefile.am
263include Graph/Makefile.am
264include Jobs/Makefile.am
265
266if CONDPYTHON
267include Python/Makefile.am
268endif
269
270include LinkedCell/Makefile.am
271include Parameters/Makefile.am
272include Parser/Makefile.am
273include Potentials/Makefile.am
274include RandomNumbers/Makefile.am
275include UIElements/Makefile.am
[ef9df36]276
[2e584e]277bin_PROGRAMS += molecuilder
[796aa6]278EXTRA_PROGRAMS = unity
[04488a]279
[b1d8092]280
[936a02]281extrastuffdir = $(datadir)/@PACKAGE@/data
282databasedir = $(extrastuffdir)/databases
283database_DATA = \
284 ${top_srcdir}/data/databases/*.db
285
286bondtabledir = $(extrastuffdir)/bondtables
287bondtable_DATA = \
288 ${top_srcdir}/data/bondtables/*.dat
[b1d8092]289
[936a02]290moleculedir = $(extrastuffdir)/molecules
291molecule_DATA = \
292 ${top_srcdir}/data/molecules/*.pdb
[b1d8092]293
[c015b3]294if CONDPYTHON
[693a80]295pyexec_LTLIBRARIES += pyMoleCuilder.la
[949953]296pyMoleCuilder_la_SOURCES = \
297 cleanUp.cpp \
298 cleanUp.hpp \
[48d3c0]299 Actions/Action_impl_python.hpp \
300 Actions/GlobalListOfActions.hpp \
[cc6e5c]301 Actions/ActionHistory.hpp
[3b35e7]302pyMoleCuilder_la_CPPFLAGS = $(AM_CPPFLAGS) ${BOOST_CPPFLAGS} ${CodePatterns_CFLAGS} $(JobMarket_CFLAGS) -I$(PYTHON_INCLUDE_DIR)
[c20839]303pyMoleCuilder_la_LDFLAGS = -module -version-info $(MOLECUILDER_SO_VERSION) -shared $(BOOST_PYTHON_LDFLAGS)
[693a80]304pyMoleCuilder_la_LIBADD = \
[eb0d77]305 libMolecuilderUI.la
306pyMoleCuilder_la_LIBADD += \
[785218]307 $(BOOST_PYTHON_LIBS) \
[693a80]308 ${CodePatterns_LIBS} \
309 -l$(PYTHON_LIB)
[c015b3]310endif
[693a80]311
[715085]312
[7e3f11a]313
[14de8e1]314molecuilder_CPPFLAGS = $(AM_CPPFLAGS)
315#molecuilder_CPPFLAGS += -DNO_CACHING
316molecuilder_LDFLAGS = \
317 $(AM_LDFLAGS) \
[748fc7]318 $(CodePatterns_LDFLAGS) \
[14de8e1]319 $(BOOST_FILESYSTEM_LDFLAGS) \
320 $(BOOST_PROGRAM_OPTIONS_LDFLAGS) \
321 $(BOOST_RANDOM_LDFLAGS) \
322 $(BOOST_SYSTEM_LDFLAGS) \
323 $(BOOST_THREAD_LDFLAGS)
[949953]324molecuilder_SOURCES = \
325 builder.cpp \
326 builder_init.cpp \
[748fc7]327 builder_init.hpp \
328 Python/PythonScripting.hpp
[952f38]329molecuilder_LDADD = \
[748fc7]330 libMolecuilder.la \
[eb0d77]331 libMolecuilderUI.la
332molecuilder_LDADD += \
[a0064e]333 ${CodePatterns_LIBS} \
[79de12]334 $(BOOST_THREAD_LIBS) \
335 $(BOOST_PROGRAM_OPTIONS_LIBS) \
336 $(BOOST_RANDOM_LIBS) \
[37ce5d]337 $(BOOST_FILESYSTEM_LIBS) \
338 $(BOOST_SYSTEM_LIBS)
[14de8e1]339
340if CONDPYTHON
341molecuilder_SOURCES += \
342 Actions/Action_impl_python.hpp \
343 Actions/GlobalListOfActions.hpp
344molecuilder_CPPFLAGS += -I$(PYTHON_INCLUDE_DIR)
345molecuilder_LDFLAGS += $(BOOST_PYTHON_LDFLAGS)
346molecuilder_LDADD += \
347 $(BOOST_PYTHON_LIBS) \
348 ${CodePatterns_LIBS} \
349 -l$(PYTHON_LIB)
350endif
[b1d8092]351
[4cf323d]352#Stuff for building the GUI using Qt
[c015b3]353if CONDQTGUI
354bin_PROGRAMS += molecuildergui
[949953]355molecuildergui_SOURCES = \
356 builder.cpp \
357 builder_init.cpp \
358 builder_init.hpp \
[7e3f11a]359 Python/PythonScripting.hpp
[14de8e1]360molecuildergui_CPPFLAGS = $(AM_CPPFLAGS) -DUSE_GUI_QT
361molecuildergui_LDFLAGS = \
362 $(AM_LDFLAGS) \
363 $(BOOST_FILESYSTEM_LDFLAGS) \
364 $(BOOST_PROGRAM_OPTIONS_LDFLAGS) \
365 $(BOOST_SYSTEM_LDFLAGS) \
366 $(BOOST_THREAD_LDFLAGS)
[952f38]367molecuildergui_LDADD = \
[748fc7]368 libMolecuilder.la \
[455573]369 libMolecuilderQtUI.la \
[eb0d77]370 libMolecuilderUI.la
371molecuildergui_LDADD += \
[a0064e]372 ${CodePatterns_LIBS} \
[79de12]373 $(BOOST_THREAD_LIBS) \
374 $(BOOST_PROGRAM_OPTIONS_LIBS) \
375 $(BOOST_RANDOM_LIBS) \
376 $(BOOST_FILESYSTEM_LIBS) \
[37ce5d]377 $(BOOST_SYSTEM_LIBS) \
[455573]378 $(GUI_LIBS)
[14de8e1]379
380if CONDPYTHON
381molecuildergui_SOURCES += \
382 Actions/Action_impl_python.hpp \
383 Actions/GlobalListOfActions.hpp
384molecuildergui_CPPFLAGS += -I$(PYTHON_INCLUDE_DIR)
385molecuildergui_LDFLAGS += $(BOOST_PYTHON_LDFLAGS)
386molecuildergui_LDADD += \
387 $(BOOST_PYTHON_LIBS) \
388 ${CodePatterns_LIBS} \
389 -l$(PYTHON_LIB)
390endif
391
[c015b3]392endif
[b1d8092]393
[004d5c]394if CONDJOBMARKET
[cc5db5]395CONTROLLERSOURCE = \
[fd4d5e]396 controller_MPQCCommandJob.cpp \
[7da5cd]397 ControllerOptions_MPQCCommandJob.cpp
[cc5db5]398
399CONTROLLERHEADER = \
[fd4d5e]400 controller_MPQCCommandJob.hpp \
[7da5cd]401 ControllerOptions_MPQCCommandJob.hpp
402
[fd4d5e]403
404noinst_LTLIBRARIES += libFragmentationAutomationController.la
405libFragmentationAutomationController_la_includedir = $(includedir)/MoleCuilder/JobMarket
406nobase_libFragmentationAutomationController_la_include_HEADERS = $(CONTROLLERHEADER)
407libFragmentationAutomationController_la_SOURCES = $(CONTROLLERSOURCE)
[004d5c]408 libFragmentationAutomationController_la_CPPFLAGS = $(AM_CPPFLAGS) $(JobMarket_CFLAGS)
[fd4d5e]409libFragmentationAutomationController_la_LIBADD = \
[004d5c]410 ${JobMarket_Controller_LIBS} \
411 $(JobMarket_LIBS)
[cc5db5]412
[fd4d5e]413bin_PROGRAMS += Controller PoolWorker Server
414
[7da5cd]415Controller_SOURCES = controller.cpp controller_AddOn_MPQCCommandJob.cpp
[4d4ef8]416Controller_LDFLAGS = $(AM_LDFLAGS) $(BOOST_SERIALIZATION_LDFLAGS) $(BOOST_PROGRAM_OPTIONS_LDFLAGS) ${CodePatterns_LDFLAGS}
[14de8e1]417Controller_CPPFLAGS = $(AM_CPPFLAGS) $(JobMarket_CFLAGS)
[cc5db5]418Controller_LDADD = \
[7da5cd]419 libFragmentationAutomationController.la \
[fe0355]420 libMolecuilderFragmentation_getFromKeysetStub.la \
[a10cc0]421 libMolecuilderFragmentation.la \
[049d4a]422 libMolecuilderJobs.la \
423 libMolecuilderFragmentationSummation.la \
[353326]424 libMolecuilderFragmentation_KeysetsContainer.la \
[a10cc0]425 libMolecuilderHelpers.la \
[004d5c]426 $(JobMarket_Controller_LIBS) \
427 $(top_builddir)/LinearAlgebra/src/LinearAlgebra/libLinearAlgebra.la \
[4d4ef8]428 $(BOOST_SERIALIZATION_LIBS) \
[7da5cd]429 $(BOOST_PROGRAM_OPTIONS_LIBS) \
430 ${CodePatterns_LIBS}
[fd4d5e]431
[7da5cd]432PoolWorker_SOURCES = poolworker.cpp
[4d4ef8]433PoolWorker_LDFLAGS = $(AM_LDFLAGS) $(BOOST_SERIALIZATION_LDFLAGS) $(BOOST_PROGRAM_OPTIONS_LDFLAGS) ${CodePatterns_LDFLAGS}
[14de8e1]434PoolWorker_CPPFLAGS = $(AM_CPPFLAGS) $(JobMarket_CFLAGS)
[cc5db5]435PoolWorker_LDADD = \
[004d5c]436 libMolecuilderJobs.la \
[fbf143]437 libMolecuilderFragmentationSummation.la \
[004d5c]438 ${JobMarket_PoolWorker_LIBS} \
439 $(top_builddir)/LinearAlgebra/src/LinearAlgebra/libLinearAlgebra.la \
[4d4ef8]440 $(BOOST_SERIALIZATION_LIBS) \
441 $(BOOST_PROGRAM_OPTIONS_LIBS) \
[7da5cd]442 ${CodePatterns_LIBS}
[fd4d5e]443
[7da5cd]444Server_SOURCES = Server.cpp
[4d4ef8]445Server_LDFLAGS = $(AM_LDFLAGS) $(BOOST_SERIALIZATION_LDFLAGS) $(BOOST_PROGRAM_OPTIONS_LDFLAGS) ${CodePatterns_LDFLAGS}
[14de8e1]446Server_CPPFLAGS = $(AM_CPPFLAGS) $(JobMarket_CFLAGS)
[cc5db5]447Server_LDADD = \
[004d5c]448 libMolecuilderJobs.la \
[fbf143]449 libMolecuilderFragmentationSummation.la \
[004d5c]450 ${JobMarket_Server_LIBS} \
451 $(top_builddir)/LinearAlgebra/src/LinearAlgebra/libLinearAlgebra.la \
[4d4ef8]452 $(BOOST_SERIALIZATION_LIBS) \
453 $(BOOST_PROGRAM_OPTIONS_LIBS) \
[7da5cd]454 ${CodePatterns_LIBS}
[004d5c]455endif
[cc5db5]456
[455573]457unity_SOURCES = unity.cpp
[14de8e1]458unity_CPPFLAGS = $(AM_CPPFLAGS)
[3b5fca]459unity_LDFLAGS = $(AM_LDFLAGS) $(BOOST_FILESYSTEM_LDFLAGS) $(BOOST_PROGRAM_OPTIONS_LDFLAGS) $(BOOST_RANDOM_LDFLAGS) $(BOOST_SYSTEM_LDFLAGS) $(BOOST_THREAD_LDFLAGS)
[79de12]460unity_LDADD = \
461 ${CodePatterns_LIBS} \
462 $(BOOST_THREAD_LIBS) \
463 $(BOOST_PROGRAM_OPTIONS_LIBS) \
464 $(BOOST_RANDOM_LIBS) \
[37ce5d]465 $(BOOST_FILESYSTEM_LIBS) \
466 $(BOOST_SYSTEM_LIBS)
[455573]467
[65b6e0]468
[a8eb4a]469FORCE:
470$(srcdir)/.git-version: FORCE
[f8be39]471 @if (test -d $(top_srcdir)/.git && cd $(srcdir) \
472 && { git describe --dirty --always || git describe; } ) > .git-version-t 2>/dev/null \
[a8eb4a]473 && ! diff .git-version-t $(srcdir)/.git-version >/dev/null 2>&1; then \
474 mv -f .git-version-t $(srcdir)/.git-version; \
475 else \
476 rm -f .git-version-t; \
477 fi
478
[fd4d5e]479EXTRA_DIST += \
[936a02]480 $(srcdir)/.git-version \
481 $(bondtable_DATA) \
482 $(database_DATA) \
483 $(molecule_DATA)
[a8eb4a]484
485$(srcdir)/version.c: $(srcdir)/.git-version
[5f8660a]486 echo "const char *MOLECUILDERVERSION = \"$(PACKAGE_NAME) version "`cat $(srcdir)/.git-version`"\";" > $@
[a8eb4a]487
[b8d1aeb]488
[d223d5]489unity.cpp: ${MOLECUILDERSOURCE} ${MOLECUILDERHEADER}
490 list='$(MOLECUILDERSOURCE)'; for file in $$list; do \
[b0b086]491 echo "#include \"$(srcdir)/$$file\"" >> unity.cpp; \
[d223d5]492 done; \
493 subdirs='$(SUBDIRS)';for directory in $$subdirs; do\
494 olddir=$$PWD;\
495 cd $$directory && make unity.cpp;\
496 cd $$olddir;\
497 echo "#include \"$$directory/unity.cpp\"" >> unity.cpp;\
498 done;\
499 echo "#include \"$(srcdir)/builder.cpp\"" >> unity.cpp;
500 echo "#include \"$(srcdir)/version.c\"" >> unity.cpp;
501
[455573]502MOSTLYCLEANFILES += unity.cpp
[1ee3b8d]503
Note: See TracBrowser for help on using the repository browser.