# PLEASE adhere to the alphabetical ordering in this Makefile! # Also indentation by a single tab INCLUDES = -I$(top_srcdir)/LinearAlgebra/src -I$(top_srcdir)/src MOSTLYCLEANFILES = bin_PROGRAMS = TESTS = check_PROGRAMS = noinst_PROGRAMS = noinst_LTLIBRARIES = lib_LTLIBRARIES = # PLEASE adhere to the alphabetical ordering in this Makefile! # Also indentation by a single tab FRAGMENTJOBSSOURCE = \ FragmentQueue.cpp \ JobId.cpp \ Jobs/FragmentJob.cpp \ Jobs/SystemCommandJob.cpp \ Results/FragmentResult.cpp FRAGMENTJOBSHEADER = \ FragmentQueue.hpp \ JobId.hpp \ Jobs/FragmentJob.hpp \ Jobs/SystemCommandJob.hpp \ Results/FragmentResult.hpp noinst_LTLIBRARIES += libMolecuilderFragmentJobs.la libMolecuilderFragmentJobs_la_includedir = $(includedir)/MoleCuilder/Fragmentation/Automation/ nobase_libMolecuilderFragmentJobs_la_include_HEADERS = $(FRAGMENTJOBSHEADER) libMolecuilderFragmentJobs_la_CPPFLAGS = ${BOOST_CPPFLAGS} ${CodePatterns_CFLAGS} libMolecuilderFragmentJobs_la_LDFLAGS = $(AM_LDFLAGS) libMolecuilderFragmentJobs_la_SOURCES = $(FRAGMENTJOBSSOURCE) libMolecuilderFragmentJobs_la_LIBADD = \ $(BOOST_FILESYSTEM_LDFLAGS) $(BOOST_FILESYSTEM_LIBS) \ $(BOOST_IOSTREAMS_LDFLAGS) $(BOOST_IOSTREAMS_LIBS) FRAGMENTATIONOPERATIONSSOURCE = \ Operations/AsyncOperation.cpp \ Operations/OperationQueue.cpp \ Operations/OperationRegistry.cpp \ Operations/SyncOperation.cpp \ Operations/Controllers/CheckResultsOperation.cpp \ Operations/Controllers/GetNextJobIdOperation.cpp \ Operations/Controllers/ReceiveResultsOperation.cpp \ Operations/Controllers/RemoveAllWorkerOperation.cpp \ Operations/Controllers/SendJobsOperation.cpp \ Operations/Controllers/ShutdownOperation.cpp \ Operations/Servers/SendJobToWorkerOperation.cpp \ Operations/Servers/ShutdownWorkerOperation.cpp \ Operations/Workers/EnrollInPoolOperation.cpp \ Operations/Workers/ObtainJobOperation.cpp \ Operations/Workers/RemoveFromPoolOperation.cpp \ Operations/Workers/SubmitResultOperation.cpp FRAGMENTATIONOPERATIONSHEADER = \ ControllerChoices.hpp \ Operations/AsyncOperation.hpp \ Operations/Operation.hpp \ Operations/OperationQueue.hpp \ Operations/OperationRegistry.hpp \ Operations/SyncOperation.hpp \ Operations/Controllers/CheckResultsOperation.hpp \ Operations/Controllers/GetNextJobIdOperation.hpp \ Operations/Controllers/ReceiveResultsOperation.hpp \ Operations/Controllers/RemoveAllWorkerOperation.hpp \ Operations/Controllers/SendJobsOperation.hpp \ Operations/Controllers/ShutdownOperation.hpp \ Operations/Servers/SendJobToWorkerOperation.hpp \ Operations/Servers/ShutdownWorkerOperation.hpp \ Operations/Workers/EnrollInPoolOperation.hpp \ Operations/Workers/ObtainJobOperation.hpp \ Operations/Workers/RemoveFromPoolOperation.hpp \ Operations/Workers/SubmitResultOperation.hpp \ WorkerChoices.hpp noinst_LTLIBRARIES += libMolecuilderFragmentationOperations.la libMolecuilderFragmentationOperations_la_includedir = $(includedir)/MoleCuilder/Fragmentation/Automation/ nobase_libMolecuilderFragmentationOperations_la_include_HEADERS = $(FRAGMENTATIONOPERATIONSHEADER) libMolecuilderFragmentationOperations_la_CXXFLAGS = ${BOOST_CPPFLAGS} ${CodePatterns_CFLAGS} $(BOOST_ASIO_DEBUG) libMolecuilderFragmentationOperations_la_SOURCES = $(FRAGMENTATIONOPERATIONSSOURCE) FRAGMENTATIONAUTOMATIONHELPERSOURCE = \ atexit.cpp \ GlobalJobId.cpp \ Listener.cpp \ WorkerAddress.cpp FRAGMENTATIONAUTOMATIONHELPERHEADER = \ atexit.hpp \ ExitflagContainer.hpp \ GlobalJobId.hpp \ Listener.hpp \ WorkerAddress.hpp noinst_LTLIBRARIES += libMolecuilderFragmentationAutomationHelper.la libMolecuilderFragmentationAutomationHelper_la_includedir = $(includedir)/MoleCuilder/Fragmentation/Automation/ nobase_libMolecuilderFragmentationAutomationHelper_la_include_HEADERS = $(FRAGMENTATIONAUTOMATIONHELPERHEADER) libMolecuilderFragmentationAutomationHelper_la_CXXFLAGS = ${BOOST_CPPFLAGS} ${CodePatterns_CFLAGS} libMolecuilderFragmentationAutomationHelper_la_SOURCES = $(FRAGMENTATIONAUTOMATIONHELPERSOURCE) lib_LTLIBRARIES += libFragmentationAutomation.la # make libtool link with C++ linker nodist_EXTRA_libFragmentationAutomation_la_SOURCES = dummy.cpp libFragmentationAutomation_la_includedir = $(includedir)/MoleCuilder/FragmentationAutomation/ libFragmentationAutomation_la_LIBADD = \ libMolecuilderFragmentJobs.la \ libMolecuilderFragmentationOperations.la \ libMolecuilderFragmentationAutomationHelper.la \ $(BOOST_ASIO_LDFLAGS) $(BOOST_ASIO_LIBS) \ $(BOOST_PROGRAM_OPTIONS_LDFLAGS) $(BOOST_PROGRAM_OPTIONS_LIBS) \ $(BOOST_SERIALIZATION_LDFLAGS) $(BOOST_SERIALIZATION_LIBS) \ $(BOOST_THREAD_LDFLAGS) $(BOOST_THREAD_LIBS) \ $(BOOST_IOSTREAMS_LDFLAGS) $(BOOST_IOSTREAMS_LIBS) \ $(BOOST_FILESYSTEM_LDFLAGS) $(BOOST_FILESYSTEM_LIBS) \ $(BOOST_SYSTEM_LDFLAGS) $(BOOST_SYSTEM_LIBS) \ ${CodePatterns_LIBS} nobase_libFragmentationAutomation_la_include_HEADERS = \ $(JOBSHEADER) \ $(OPERATIONSHEADER) \ $(HELPERHEADER) \ $(CONTROLLERHEADER) \ $(POOLWORKERHEADER) \ $(SERVERHEADER) \ $(WORKERHEADER) ## Define the source file list for the "libexample-@MOLECUILDER_API_VERSION@.la" ## target. Note that @MOLECUILDER_API_VERSION@ is not interpreted by Automake and ## will therefore be treated as if it were literally part of the target name, ## and the variable name derived from that. ## The file extension .cc is recognized by Automake, and makes it produce ## rules which invoke the C++ compiler to produce a libtool object file (.lo) ## from each source file. Note that it is not necessary to list header files ## which are already listed elsewhere in a _HEADERS variable assignment. libFragmentationAutomation_la_SOURCES = ## Instruct libtool to include ABI version information in the generated shared ## library file (.so). The library ABI version is defined in configure.ac, so ## that all version information is kept in one place. libFragmentationAutomation_la_LDFLAGS = -version-info $(MOLECUILDER_SO_VERSION) ## The generated configuration header is installed in its own subdirectory of ## $(libdir). The reason for this is that the configuration information put ## into this header file describes the target platform the installed library ## has been built for. Thus the file must not be installed into a location ## intended for architecture-independent files, as defined by the Filesystem ## Hierarchy Standard (FHS). ## The nodist_ prefix instructs Automake to not generate rules for including ## the listed files in the distribution on 'make dist'. Files that are listed ## in _HEADERS variables are normally included in the distribution, but the ## configuration header file is generated at configure time and should not be ## shipped with the source tarball. libFragmentationAutomation_libincludedir = $(includedir)/Fragmentation/Automation nobase_libFragmentationAutomation_libinclude_HEADERS = \ $(JOBSHEADER) \ $(OPERATIONSHEADER) \ $(HELPERHEADER) \ $(CONTROLLERHEADER) \ $(POOLWORKERHEADER) \ $(SERVERHEADER) \ $(WORKERHEADER) \ $(top_builddir)/libmolecuilder_config.h ## Install the generated pkg-config file (.pc) into the expected location for ## architecture-dependent package configuration information. Occasionally, ## pkg-config files are also used for architecture-independent data packages, ## in which case the correct install location would be $(datadir)/pkgconfig. #pkgconfigdir = $(libdir)/pkgconfig #pkgconfig_DATA = $(top_builddir)/molecuilder.pc $(top_builddir)/molecuilder-debug.pc include unittests/Makefile.am