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 |
|
---|
34 | FRAGMENTATIONAUTOMATIONHEADER = \
|
---|
35 | atexit.hpp
|
---|
36 |
|
---|
37 | noinst_LTLIBRARIES += libMolecuilderFragmentationAutomation.la
|
---|
38 | libMolecuilderFragmentationAutomation_la_includedir = $(includedir)/MoleCuilder/Fragmentation/Automation/
|
---|
39 | nobase_libMolecuilderFragmentationAutomation_la_include_HEADERS = ${FRAGMENTATIONAUTOMATIONHEADER}
|
---|
40 | libMolecuilderFragmentationAutomation_la_SOURCES = ${FRAGMENTATIONAUTOMATIONSOURCE}
|
---|
41 |
|
---|
42 | include unittests/Makefile.am
|
---|
43 |
|
---|
44 | AM_LDFLAGS = -ldl ${BOOST_LDFLAGS}
|
---|
45 | AM_CPPFLAGS = ${BOOST_CPPFLAGS} ${CodePatterns_CFLAGS}
|
---|
46 |
|
---|
47 | bin_PROGRAMS += Server Worker
|
---|
48 |
|
---|
49 | SERVERSOURCE = \
|
---|
50 | FragmentScheduler.cpp \
|
---|
51 | Server.cpp
|
---|
52 |
|
---|
53 | SERVERHEADER = \
|
---|
54 | Connection.hpp \
|
---|
55 | FragmentScheduler.hpp
|
---|
56 |
|
---|
57 | WORKERSOURCE = \
|
---|
58 | FragmentWorker.cpp \
|
---|
59 | Worker.cpp
|
---|
60 |
|
---|
61 | WORKERHEADER = \
|
---|
62 | Connection.hpp \
|
---|
63 | FragmentWorker.hpp
|
---|
64 |
|
---|
65 | Server_SOURCES = $(SERVERSOURCE) $(SERVERHEADER)
|
---|
66 | Server_LDFLAGS = $(AM_LDFLAGS) $(BOOST_ASIO_LDFLAGS) $(BOOST_SYSTEM_LDFLAGS) $(BOOST_THREAD_LDFLAGS) $(BOOST_SERIALIZATION_LDFLAGS)
|
---|
67 | Server_CXXFLAGS = $(AM_CPPFLAGS)
|
---|
68 | Server_LDADD = \
|
---|
69 | libMolecuilderFragmentJobs.la \
|
---|
70 | libMolecuilderFragmentationAutomation.la \
|
---|
71 | $(BOOST_ASIO_LIBS) \
|
---|
72 | $(BOOST_SERIALIZATION_LIBS) \
|
---|
73 | $(BOOST_THREAD_LIBS) \
|
---|
74 | $(BOOST_SYSTEM_LIBS) \
|
---|
75 | ${CodePatterns_LIBS}
|
---|
76 |
|
---|
77 | Worker_SOURCES = $(WORKERSOURCE) $(WORKERHEADER)
|
---|
78 | Worker_LDFLAGS = $(AM_LDFLAGS) $(BOOST_ASIO_LDFLAGS) $(BOOST_SYSTEM_LDFLAGS) $(BOOST_THREAD_LDFLAGS) $(BOOST_SERIALIZATION_LDFLAGS)
|
---|
79 | Worker_CXXFLAGS = $(AM_CPPFLAGS)
|
---|
80 | Worker_LDADD = \
|
---|
81 | libMolecuilderFragmentJobs.la \
|
---|
82 | libMolecuilderFragmentationAutomation.la \
|
---|
83 | $(BOOST_ASIO_LIBS) \
|
---|
84 | $(BOOST_SERIALIZATION_LIBS) \
|
---|
85 | $(BOOST_THREAD_LIBS) \
|
---|
86 | $(BOOST_SYSTEM_LIBS) \
|
---|
87 | ${CodePatterns_LIBS}
|
---|
88 |
|
---|