source: src/Fragmentation/Automation/Makefile.am@ cc276e

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

Added MPQCCommandJob and result container MPQCData.

  • MPQCData contains data to be serialized into FragmentResult.
  • MPQCCommandJob implements mpqc-specific result extractor.
  • added unit test for MPQCCommandJob.
  • added unit test for MPQCData.
  • Property mode set to 100644
File size: 4.2 KB
Line 
1# PLEASE adhere to the alphabetical ordering in this Makefile!
2# Also indentation by a single tab
3
4INCLUDES = -I$(top_srcdir)/LinearAlgebra/src
5
6MOSTLYCLEANFILES =
7bin_PROGRAMS =
8TESTS =
9check_PROGRAMS =
10noinst_PROGRAMS =
11noinst_LTLIBRARIES =
12
13# PLEASE adhere to the alphabetical ordering in this Makefile!
14# Also indentation by a single tab
15
16FRAGMENTJOBSSOURCE = \
17 FragmentQueue.cpp \
18 JobId.cpp \
19 Jobs/FragmentJob.cpp \
20 Jobs/MPQCCommandJob.cpp \
21 Jobs/MPQCCommandJob_MPQCData.cpp \
22 Jobs/SystemCommandJob.cpp \
23 Results/FragmentResult.cpp
24
25FRAGMENTJOBSHEADER = \
26 FragmentQueue.hpp \
27 JobId.hpp \
28 Jobs/FragmentJob.hpp \
29 Jobs/MPQCCommandJob.hpp \
30 Jobs/MPQCCommandJob_MPQCData.hpp \
31 Jobs/SystemCommandJob.hpp \
32 Results/FragmentResult.hpp
33
34noinst_LTLIBRARIES += libMolecuilderFragmentJobs.la
35libMolecuilderFragmentJobs_la_includedir = $(includedir)/MoleCuilder/Fragmentation/Automation/
36nobase_libMolecuilderFragmentJobs_la_include_HEADERS = $(FRAGMENTJOBSHEADER)
37libMolecuilderFragmentJobs_la_CPPFLAGS = ${BOOST_CPPFLAGS} ${CodePatterns_CFLAGS}
38libMolecuilderFragmentJobs_la_LDFLAGS = $(AM_LDFLAGS)
39libMolecuilderFragmentJobs_la_SOURCES = $(FRAGMENTJOBSSOURCE)
40libMolecuilderFragmentJobs_la_LIBADD = \
41 $(BOOST_FILESYSTEM_LDFLAGS) $(BOOST_FILESYSTEM_LIBS) \
42 $(BOOST_IOSTREAMS_LDFLAGS) $(BOOST_IOSTREAMS_LIBS)
43
44FRAGMENTATIONAUTOMATIONSOURCE = \
45 atexit.cpp \
46 Controller/CommandRegistry.cpp \
47 Controller/FragmentController.cpp \
48 Controller/Commands/CheckResultsOperation.cpp \
49 Controller/Commands/Operation.cpp \
50 Controller/Commands/ReceiveJobsOperation.cpp \
51 Controller/Commands/SendResultsOperation.cpp \
52 Controller/Commands/ShutdownOperation.cpp
53
54FRAGMENTATIONAUTOMATIONHEADER = \
55 atexit.hpp \
56 Connection.hpp \
57 ControllerChoices.hpp \
58 Controller/CommandRegistry.hpp \
59 Controller/FragmentController.hpp \
60 Controller/Commands/CheckResultsOperation.hpp \
61 Controller/Commands/Operation.hpp \
62 Controller/Commands/ReceiveJobsOperation.hpp \
63 Controller/Commands/SendResultsOperation.hpp \
64 Controller/Commands/ShutdownOperation.hpp
65
66noinst_LTLIBRARIES += libMolecuilderFragmentationAutomation.la
67libMolecuilderFragmentationAutomation_la_includedir = $(includedir)/MoleCuilder/Fragmentation/Automation/
68nobase_libMolecuilderFragmentationAutomation_la_include_HEADERS = $(FRAGMENTATIONAUTOMATIONHEADER)
69libMolecuilderFragmentationAutomation_la_SOURCES = $(FRAGMENTATIONAUTOMATIONSOURCE)
70
71include unittests/Makefile.am
72
73AM_LDFLAGS = -ldl ${BOOST_LDFLAGS}
74AM_CPPFLAGS = ${BOOST_CPPFLAGS} ${CodePatterns_CFLAGS}
75
76bin_PROGRAMS += Controller Server Worker
77
78CONTROLLERSOURCE =
79
80CONTROLLERHEADER = \
81 FragmentController.hpp
82
83SERVERSOURCE = \
84 FragmentScheduler.cpp
85
86SERVERHEADER = \
87 Connection.hpp \
88 ControllerChoices.hpp \
89 FragmentScheduler.hpp
90
91WORKERSOURCE = \
92 FragmentWorker.cpp \
93 Worker.cpp
94
95WORKERHEADER = \
96 Connection.hpp \
97 FragmentWorker.hpp
98
99Controller_SOURCES = $(CONTROLLERSOURCE) $(CONTROLLERHEADER) controller.cpp
100Controller_LDFLAGS = $(AM_LDFLAGS) $(BOOST_ASIO_LDFLAGS) $(BOOST_SYSTEM_LDFLAGS) $(BOOST_THREAD_LDFLAGS) $(BOOST_SERIALIZATION_LDFLAGS)
101Controller_CXXFLAGS = $(AM_CPPFLAGS)
102Controller_LDADD = \
103 libMolecuilderFragmentationAutomation.la \
104 libMolecuilderFragmentJobs.la \
105 $(BOOST_ASIO_LIBS) \
106 $(BOOST_SERIALIZATION_LIBS) \
107 $(BOOST_THREAD_LIBS) \
108 $(BOOST_SYSTEM_LIBS) \
109 ${CodePatterns_LIBS}
110
111Server_SOURCES = $(SERVERSOURCE) $(SERVERHEADER) Server.cpp
112Server_LDFLAGS = $(AM_LDFLAGS) $(BOOST_ASIO_LDFLAGS) $(BOOST_SYSTEM_LDFLAGS) $(BOOST_THREAD_LDFLAGS) $(BOOST_SERIALIZATION_LDFLAGS)
113Server_CXXFLAGS = $(AM_CPPFLAGS)
114Server_LDADD = \
115 libMolecuilderFragmentationAutomation.la \
116 libMolecuilderFragmentJobs.la \
117 $(BOOST_ASIO_LIBS) \
118 $(BOOST_SERIALIZATION_LIBS) \
119 $(BOOST_THREAD_LIBS) \
120 $(BOOST_SYSTEM_LIBS) \
121 ${CodePatterns_LIBS}
122
123Worker_SOURCES = $(WORKERSOURCE) $(WORKERHEADER)
124Worker_LDFLAGS = $(AM_LDFLAGS) $(BOOST_ASIO_LDFLAGS) $(BOOST_SYSTEM_LDFLAGS) $(BOOST_THREAD_LDFLAGS) $(BOOST_SERIALIZATION_LDFLAGS)
125Worker_CXXFLAGS = $(AM_CPPFLAGS)
126Worker_LDADD = \
127 libMolecuilderFragmentationAutomation.la \
128 libMolecuilderFragmentJobs.la \
129 $(BOOST_ASIO_LIBS) \
130 $(BOOST_SERIALIZATION_LIBS) \
131 $(BOOST_THREAD_LIBS) \
132 $(BOOST_SYSTEM_LIBS) \
133 ${CodePatterns_LIBS}
134
Note: See TracBrowser for help on using the repository browser.