1 | # PLEASE adhere to the alphabetical ordering in this Makefile!
|
---|
2 | # Also indentation by a single tab
|
---|
3 |
|
---|
4 | MOSTLYCLEANFILES =
|
---|
5 | bin_PROGRAMS =
|
---|
6 | TESTS =
|
---|
7 | check_PROGRAMS =
|
---|
8 | noinst_PROGRAMS =
|
---|
9 | noinst_LTLIBRARIES =
|
---|
10 |
|
---|
11 | # PLEASE adhere to the alphabetical ordering in this Makefile!
|
---|
12 | # Also indentation by a single tab
|
---|
13 |
|
---|
14 | FRAGMENTJOBSSOURCE = \
|
---|
15 | FragmentJob.cpp \
|
---|
16 | FragmentQueue.cpp \
|
---|
17 | FragmentResult.cpp \
|
---|
18 | JobId.cpp
|
---|
19 |
|
---|
20 | FRAGMENTJOBSHEADER = \
|
---|
21 | FragmentJob.hpp \
|
---|
22 | FragmentQueue.hpp \
|
---|
23 | FragmentResult.hpp \
|
---|
24 | JobId.hpp
|
---|
25 |
|
---|
26 | noinst_LTLIBRARIES += libMolecuilderFragmentJobs.la
|
---|
27 | libMolecuilderFragmentJobs_la_includedir = $(includedir)/MoleCuilder/Fragmentation/Automation/
|
---|
28 | nobase_libMolecuilderFragmentJobs_la_include_HEADERS = $(FRAGMENTJOBSHEADER)
|
---|
29 | libMolecuilderFragmentJobs_la_SOURCES = $(FRAGMENTJOBSSOURCE)
|
---|
30 |
|
---|
31 | FRAGMENTATIONAUTOMATIONSOURCE = \
|
---|
32 | atexit.cpp \
|
---|
33 | Controller/CommandRegistry.cpp \
|
---|
34 | Controller/FragmentController.cpp \
|
---|
35 | Controller/Commands/CheckResultsOperation.cpp \
|
---|
36 | Controller/Commands/Operation.cpp \
|
---|
37 | Controller/Commands/ReceiveJobsOperation.cpp \
|
---|
38 | Controller/Commands/SendResultsOperation.cpp \
|
---|
39 | Controller/Commands/ShutdownOperation.cpp
|
---|
40 |
|
---|
41 | FRAGMENTATIONAUTOMATIONHEADER = \
|
---|
42 | atexit.hpp \
|
---|
43 | Connection.hpp \
|
---|
44 | ControllerChoices.hpp \
|
---|
45 | Controller/CommandRegistry.hpp \
|
---|
46 | Controller/FragmentController.hpp \
|
---|
47 | Controller/Commands/CheckResultsOperation.hpp \
|
---|
48 | Controller/Commands/Operation.hpp \
|
---|
49 | Controller/Commands/ReceiveJobsOperation.hpp \
|
---|
50 | Controller/Commands/SendResultsOperation.hpp \
|
---|
51 | Controller/Commands/ShutdownOperation.hpp
|
---|
52 |
|
---|
53 | noinst_LTLIBRARIES += libMolecuilderFragmentationAutomation.la
|
---|
54 | libMolecuilderFragmentationAutomation_la_includedir = $(includedir)/MoleCuilder/Fragmentation/Automation/
|
---|
55 | nobase_libMolecuilderFragmentationAutomation_la_include_HEADERS = $(FRAGMENTATIONAUTOMATIONHEADER)
|
---|
56 | libMolecuilderFragmentationAutomation_la_SOURCES = $(FRAGMENTATIONAUTOMATIONSOURCE)
|
---|
57 |
|
---|
58 | include unittests/Makefile.am
|
---|
59 |
|
---|
60 | AM_LDFLAGS = -ldl ${BOOST_LDFLAGS}
|
---|
61 | AM_CPPFLAGS = ${BOOST_CPPFLAGS} ${CodePatterns_CFLAGS}
|
---|
62 |
|
---|
63 | bin_PROGRAMS += Controller Server Worker
|
---|
64 |
|
---|
65 | CONTROLLERSOURCE =
|
---|
66 |
|
---|
67 | CONTROLLERHEADER = \
|
---|
68 | FragmentController.hpp
|
---|
69 |
|
---|
70 | SERVERSOURCE = \
|
---|
71 | FragmentScheduler.cpp
|
---|
72 |
|
---|
73 | SERVERHEADER = \
|
---|
74 | Connection.hpp \
|
---|
75 | ControllerChoices.hpp \
|
---|
76 | FragmentScheduler.hpp
|
---|
77 |
|
---|
78 | WORKERSOURCE = \
|
---|
79 | FragmentWorker.cpp \
|
---|
80 | Worker.cpp
|
---|
81 |
|
---|
82 | WORKERHEADER = \
|
---|
83 | Connection.hpp \
|
---|
84 | FragmentWorker.hpp
|
---|
85 |
|
---|
86 | Controller_SOURCES = $(CONTROLLERSOURCE) $(CONTROLLERHEADER) controller.cpp
|
---|
87 | Controller_LDFLAGS = $(AM_LDFLAGS) $(BOOST_ASIO_LDFLAGS) $(BOOST_SYSTEM_LDFLAGS) $(BOOST_THREAD_LDFLAGS) $(BOOST_SERIALIZATION_LDFLAGS)
|
---|
88 | Controller_CXXFLAGS = $(AM_CPPFLAGS)
|
---|
89 | Controller_LDADD = \
|
---|
90 | libMolecuilderFragmentationAutomation.la \
|
---|
91 | libMolecuilderFragmentJobs.la \
|
---|
92 | $(BOOST_ASIO_LIBS) \
|
---|
93 | $(BOOST_SERIALIZATION_LIBS) \
|
---|
94 | $(BOOST_THREAD_LIBS) \
|
---|
95 | $(BOOST_SYSTEM_LIBS) \
|
---|
96 | ${CodePatterns_LIBS}
|
---|
97 |
|
---|
98 | Server_SOURCES = $(SERVERSOURCE) $(SERVERHEADER) Server.cpp
|
---|
99 | Server_LDFLAGS = $(AM_LDFLAGS) $(BOOST_ASIO_LDFLAGS) $(BOOST_SYSTEM_LDFLAGS) $(BOOST_THREAD_LDFLAGS) $(BOOST_SERIALIZATION_LDFLAGS)
|
---|
100 | Server_CXXFLAGS = $(AM_CPPFLAGS)
|
---|
101 | Server_LDADD = \
|
---|
102 | libMolecuilderFragmentationAutomation.la \
|
---|
103 | libMolecuilderFragmentJobs.la \
|
---|
104 | $(BOOST_ASIO_LIBS) \
|
---|
105 | $(BOOST_SERIALIZATION_LIBS) \
|
---|
106 | $(BOOST_THREAD_LIBS) \
|
---|
107 | $(BOOST_SYSTEM_LIBS) \
|
---|
108 | ${CodePatterns_LIBS}
|
---|
109 |
|
---|
110 | Worker_SOURCES = $(WORKERSOURCE) $(WORKERHEADER)
|
---|
111 | Worker_LDFLAGS = $(AM_LDFLAGS) $(BOOST_ASIO_LDFLAGS) $(BOOST_SYSTEM_LDFLAGS) $(BOOST_THREAD_LDFLAGS) $(BOOST_SERIALIZATION_LDFLAGS)
|
---|
112 | Worker_CXXFLAGS = $(AM_CPPFLAGS)
|
---|
113 | Worker_LDADD = \
|
---|
114 | libMolecuilderFragmentationAutomation.la \
|
---|
115 | libMolecuilderFragmentJobs.la \
|
---|
116 | $(BOOST_ASIO_LIBS) \
|
---|
117 | $(BOOST_SERIALIZATION_LIBS) \
|
---|
118 | $(BOOST_THREAD_LIBS) \
|
---|
119 | $(BOOST_SYSTEM_LIBS) \
|
---|
120 | ${CodePatterns_LIBS}
|
---|
121 |
|
---|