1 | # PLEASE adhere to the alphabetical ordering in this Makefile!
|
---|
2 | # Also indentation by a single tab
|
---|
3 |
|
---|
4 | INCLUDES = -I$(top_srcdir)/LinearAlgebra/src
|
---|
5 |
|
---|
6 | MOSTLYCLEANFILES =
|
---|
7 | bin_PROGRAMS =
|
---|
8 | TESTS =
|
---|
9 | check_PROGRAMS =
|
---|
10 | noinst_PROGRAMS =
|
---|
11 | noinst_LTLIBRARIES =
|
---|
12 |
|
---|
13 | # PLEASE adhere to the alphabetical ordering in this Makefile!
|
---|
14 | # Also indentation by a single tab
|
---|
15 |
|
---|
16 | FRAGMENTJOBSSOURCE = \
|
---|
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 |
|
---|
25 | FRAGMENTJOBSHEADER = \
|
---|
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 |
|
---|
34 | noinst_LTLIBRARIES += libMolecuilderFragmentJobs.la
|
---|
35 | libMolecuilderFragmentJobs_la_includedir = $(includedir)/MoleCuilder/Fragmentation/Automation/
|
---|
36 | nobase_libMolecuilderFragmentJobs_la_include_HEADERS = $(FRAGMENTJOBSHEADER)
|
---|
37 | libMolecuilderFragmentJobs_la_CPPFLAGS = ${BOOST_CPPFLAGS} ${CodePatterns_CFLAGS}
|
---|
38 | libMolecuilderFragmentJobs_la_LDFLAGS = $(AM_LDFLAGS)
|
---|
39 | libMolecuilderFragmentJobs_la_SOURCES = $(FRAGMENTJOBSSOURCE)
|
---|
40 | libMolecuilderFragmentJobs_la_LIBADD = \
|
---|
41 | $(BOOST_FILESYSTEM_LDFLAGS) $(BOOST_FILESYSTEM_LIBS) \
|
---|
42 | $(BOOST_IOSTREAMS_LDFLAGS) $(BOOST_IOSTREAMS_LIBS)
|
---|
43 |
|
---|
44 | FRAGMENTATIONAUTOMATIONSOURCE = \
|
---|
45 | atexit.cpp \
|
---|
46 | Controller/CommandRegistry.cpp \
|
---|
47 | Controller/FragmentController.cpp \
|
---|
48 | Controller/Commands/CheckResultsOperation.cpp \
|
---|
49 | Controller/Commands/GetNextJobIdOperation.cpp \
|
---|
50 | Controller/Commands/Operation.cpp \
|
---|
51 | Controller/Commands/ReceiveJobsOperation.cpp \
|
---|
52 | Controller/Commands/SendResultsOperation.cpp \
|
---|
53 | Controller/Commands/ShutdownOperation.cpp \
|
---|
54 | GlobalJobId.cpp
|
---|
55 |
|
---|
56 | FRAGMENTATIONAUTOMATIONHEADER = \
|
---|
57 | atexit.hpp \
|
---|
58 | Connection.hpp \
|
---|
59 | ControllerChoices.hpp \
|
---|
60 | Controller/CommandRegistry.hpp \
|
---|
61 | Controller/FragmentController.hpp \
|
---|
62 | Controller/Commands/CheckResultsOperation.hpp \
|
---|
63 | Controller/Commands/GetNextJobIdOperation.hpp \
|
---|
64 | Controller/Commands/Operation.hpp \
|
---|
65 | Controller/Commands/ReceiveJobsOperation.hpp \
|
---|
66 | Controller/Commands/SendResultsOperation.hpp \
|
---|
67 | Controller/Commands/ShutdownOperation.hpp \
|
---|
68 | GlobalJobId.hpp
|
---|
69 |
|
---|
70 | noinst_LTLIBRARIES += libMolecuilderFragmentationAutomation.la
|
---|
71 | libMolecuilderFragmentationAutomation_la_includedir = $(includedir)/MoleCuilder/Fragmentation/Automation/
|
---|
72 | nobase_libMolecuilderFragmentationAutomation_la_include_HEADERS = $(FRAGMENTATIONAUTOMATIONHEADER)
|
---|
73 | libMolecuilderFragmentationAutomation_la_SOURCES = $(FRAGMENTATIONAUTOMATIONSOURCE)
|
---|
74 |
|
---|
75 | include unittests/Makefile.am
|
---|
76 |
|
---|
77 | AM_LDFLAGS = -ldl ${BOOST_LDFLAGS}
|
---|
78 | AM_CPPFLAGS = ${BOOST_CPPFLAGS} ${CodePatterns_CFLAGS}
|
---|
79 |
|
---|
80 | bin_PROGRAMS += Controller Server Worker
|
---|
81 |
|
---|
82 | CONTROLLERSOURCE =
|
---|
83 |
|
---|
84 | CONTROLLERHEADER = \
|
---|
85 | FragmentController.hpp
|
---|
86 |
|
---|
87 | SERVERSOURCE = \
|
---|
88 | FragmentScheduler.cpp
|
---|
89 |
|
---|
90 | SERVERHEADER = \
|
---|
91 | Connection.hpp \
|
---|
92 | ControllerChoices.hpp \
|
---|
93 | FragmentScheduler.hpp
|
---|
94 |
|
---|
95 | WORKERSOURCE = \
|
---|
96 | FragmentWorker.cpp \
|
---|
97 | Worker.cpp
|
---|
98 |
|
---|
99 | WORKERHEADER = \
|
---|
100 | Connection.hpp \
|
---|
101 | FragmentWorker.hpp
|
---|
102 |
|
---|
103 | Controller_SOURCES = $(CONTROLLERSOURCE) $(CONTROLLERHEADER) controller.cpp
|
---|
104 | Controller_LDFLAGS = $(AM_LDFLAGS) $(BOOST_ASIO_LDFLAGS) $(BOOST_SYSTEM_LDFLAGS) $(BOOST_THREAD_LDFLAGS) $(BOOST_SERIALIZATION_LDFLAGS)
|
---|
105 | Controller_CXXFLAGS = $(AM_CPPFLAGS)
|
---|
106 | Controller_LDADD = \
|
---|
107 | libMolecuilderFragmentationAutomation.la \
|
---|
108 | libMolecuilderFragmentJobs.la \
|
---|
109 | $(BOOST_ASIO_LIBS) \
|
---|
110 | $(BOOST_SERIALIZATION_LIBS) \
|
---|
111 | $(BOOST_THREAD_LIBS) \
|
---|
112 | $(BOOST_SYSTEM_LIBS) \
|
---|
113 | ${CodePatterns_LIBS}
|
---|
114 |
|
---|
115 | Server_SOURCES = $(SERVERSOURCE) $(SERVERHEADER) Server.cpp
|
---|
116 | Server_LDFLAGS = $(AM_LDFLAGS) $(BOOST_ASIO_LDFLAGS) $(BOOST_SYSTEM_LDFLAGS) $(BOOST_THREAD_LDFLAGS) $(BOOST_SERIALIZATION_LDFLAGS)
|
---|
117 | Server_CXXFLAGS = $(AM_CPPFLAGS)
|
---|
118 | Server_LDADD = \
|
---|
119 | libMolecuilderFragmentationAutomation.la \
|
---|
120 | libMolecuilderFragmentJobs.la \
|
---|
121 | $(BOOST_ASIO_LIBS) \
|
---|
122 | $(BOOST_SERIALIZATION_LIBS) \
|
---|
123 | $(BOOST_THREAD_LIBS) \
|
---|
124 | $(BOOST_SYSTEM_LIBS) \
|
---|
125 | ${CodePatterns_LIBS}
|
---|
126 |
|
---|
127 | Worker_SOURCES = $(WORKERSOURCE) $(WORKERHEADER)
|
---|
128 | Worker_LDFLAGS = $(AM_LDFLAGS) $(BOOST_ASIO_LDFLAGS) $(BOOST_SYSTEM_LDFLAGS) $(BOOST_THREAD_LDFLAGS) $(BOOST_SERIALIZATION_LDFLAGS)
|
---|
129 | Worker_CXXFLAGS = $(AM_CPPFLAGS)
|
---|
130 | Worker_LDADD = \
|
---|
131 | libMolecuilderFragmentationAutomation.la \
|
---|
132 | libMolecuilderFragmentJobs.la \
|
---|
133 | $(BOOST_ASIO_LIBS) \
|
---|
134 | $(BOOST_SERIALIZATION_LIBS) \
|
---|
135 | $(BOOST_THREAD_LIBS) \
|
---|
136 | $(BOOST_SYSTEM_LIBS) \
|
---|
137 | ${CodePatterns_LIBS}
|
---|
138 |
|
---|