[d0b3aca] | 1 | # PLEASE adhere to the alphabetical ordering in this Makefile!
|
---|
| 2 | # Also indentation by a single tab
|
---|
| 3 |
|
---|
| 4 | MOSTLYCLEANFILES =
|
---|
| 5 | bin_PROGRAMS =
|
---|
[b5ebb5] | 6 | TESTS =
|
---|
| 7 | check_PROGRAMS =
|
---|
| 8 | noinst_PROGRAMS =
|
---|
[cde0fe] | 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/
|
---|
[1dc209] | 28 | nobase_libMolecuilderFragmentJobs_la_include_HEADERS = $(FRAGMENTJOBSHEADER)
|
---|
| 29 | libMolecuilderFragmentJobs_la_SOURCES = $(FRAGMENTJOBSSOURCE)
|
---|
[cde0fe] | 30 |
|
---|
| 31 | FRAGMENTATIONAUTOMATIONSOURCE = \
|
---|
[1dc209] | 32 | atexit.cpp \
|
---|
[7ca772] | 33 | Controller/CommandRegistry.cpp \
|
---|
[73d6fc] | 34 | Controller/FragmentController.cpp \
|
---|
[167b63] | 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
|
---|
[cde0fe] | 40 |
|
---|
| 41 | FRAGMENTATIONAUTOMATIONHEADER = \
|
---|
[1dc209] | 42 | atexit.hpp \
|
---|
| 43 | Connection.hpp \
|
---|
| 44 | ControllerChoices.hpp \
|
---|
[7ca772] | 45 | Controller/CommandRegistry.hpp \
|
---|
[73d6fc] | 46 | Controller/FragmentController.hpp \
|
---|
[167b63] | 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
|
---|
[cde0fe] | 52 |
|
---|
| 53 | noinst_LTLIBRARIES += libMolecuilderFragmentationAutomation.la
|
---|
| 54 | libMolecuilderFragmentationAutomation_la_includedir = $(includedir)/MoleCuilder/Fragmentation/Automation/
|
---|
[1dc209] | 55 | nobase_libMolecuilderFragmentationAutomation_la_include_HEADERS = $(FRAGMENTATIONAUTOMATIONHEADER)
|
---|
| 56 | libMolecuilderFragmentationAutomation_la_SOURCES = $(FRAGMENTATIONAUTOMATIONSOURCE)
|
---|
[b5ebb5] | 57 |
|
---|
| 58 | include unittests/Makefile.am
|
---|
[d0b3aca] | 59 |
|
---|
| 60 | AM_LDFLAGS = -ldl ${BOOST_LDFLAGS}
|
---|
| 61 | AM_CPPFLAGS = ${BOOST_CPPFLAGS} ${CodePatterns_CFLAGS}
|
---|
| 62 |
|
---|
[7ca772] | 63 | bin_PROGRAMS += Controller Server Worker
|
---|
[db03d9] | 64 |
|
---|
[1dc209] | 65 | CONTROLLERSOURCE =
|
---|
[db03d9] | 66 |
|
---|
| 67 | CONTROLLERHEADER = \
|
---|
| 68 | FragmentController.hpp
|
---|
[d0b3aca] | 69 |
|
---|
[b05673] | 70 | SERVERSOURCE = \
|
---|
[db03d9] | 71 | FragmentScheduler.cpp
|
---|
[b05673] | 72 |
|
---|
| 73 | SERVERHEADER = \
|
---|
[af3aed] | 74 | Connection.hpp \
|
---|
[778abb] | 75 | ControllerChoices.hpp \
|
---|
[cde0fe] | 76 | FragmentScheduler.hpp
|
---|
[b05673] | 77 |
|
---|
| 78 | WORKERSOURCE = \
|
---|
| 79 | FragmentWorker.cpp \
|
---|
| 80 | Worker.cpp
|
---|
| 81 |
|
---|
| 82 | WORKERHEADER = \
|
---|
| 83 | Connection.hpp \
|
---|
[cde0fe] | 84 | FragmentWorker.hpp
|
---|
[b05673] | 85 |
|
---|
[7ca772] | 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 = \
|
---|
[778abb] | 90 | libMolecuilderFragmentationAutomation.la \
|
---|
[1dc209] | 91 | libMolecuilderFragmentJobs.la \
|
---|
[db03d9] | 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
|
---|
[b14f17] | 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 = \
|
---|
[cde0fe] | 102 | libMolecuilderFragmentationAutomation.la \
|
---|
[1dc209] | 103 | libMolecuilderFragmentJobs.la \
|
---|
[72eaf7f] | 104 | $(BOOST_ASIO_LIBS) \
|
---|
| 105 | $(BOOST_SERIALIZATION_LIBS) \
|
---|
[d0b3aca] | 106 | $(BOOST_THREAD_LIBS) \
|
---|
[72eaf7f] | 107 | $(BOOST_SYSTEM_LIBS) \
|
---|
| 108 | ${CodePatterns_LIBS}
|
---|
| 109 |
|
---|
[b05673] | 110 | Worker_SOURCES = $(WORKERSOURCE) $(WORKERHEADER)
|
---|
[b14f17] | 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 = \
|
---|
[cde0fe] | 114 | libMolecuilderFragmentationAutomation.la \
|
---|
[1dc209] | 115 | libMolecuilderFragmentJobs.la \
|
---|
[d0b3aca] | 116 | $(BOOST_ASIO_LIBS) \
|
---|
[72eaf7f] | 117 | $(BOOST_SERIALIZATION_LIBS) \
|
---|
| 118 | $(BOOST_THREAD_LIBS) \
|
---|
| 119 | $(BOOST_SYSTEM_LIBS) \
|
---|
| 120 | ${CodePatterns_LIBS}
|
---|
[d0b3aca] | 121 |
|
---|