| [ffe057] | 1 | # PLEASE adhere to the alphabetical ordering in this Makefile!
 | 
|---|
 | 2 | # Also indentation by a single tab
 | 
|---|
 | 3 | 
 | 
|---|
 | 4 | FRAGMENTATIONAUTOMATIONSOURCE = \
 | 
|---|
| [184615] | 5 |         Fragmentation/Automation/createMatrixNrLookup.cpp \
 | 
|---|
| [27594e] | 6 |         Fragmentation/Automation/FragmentationChargeDensity.cpp \
 | 
|---|
| [376a3b] | 7 |         Fragmentation/Automation/FragmentationResults.cpp \
 | 
|---|
| [ffe057] | 8 |         Fragmentation/Automation/MPQCFragmentController.cpp \
 | 
|---|
| [17c03f] | 9 |         Fragmentation/Automation/parseKeySetFile.cpp \
 | 
|---|
| [ffe057] | 10 |         Fragmentation/Automation/SpecificFragmentController.cpp
 | 
|---|
 | 11 | 
 | 
|---|
 | 12 | if CONDVMG
 | 
|---|
 | 13 | FRAGMENTATIONAUTOMATIONSOURCE += \
 | 
|---|
| [238868] | 14 |         Fragmentation/Automation/VMGDebugGridFragmentController.cpp \
 | 
|---|
| [ffe057] | 15 |         Fragmentation/Automation/VMGFragmentController.cpp
 | 
|---|
 | 16 | endif
 | 
|---|
 | 17 | 
 | 
|---|
 | 18 | FRAGMENTATIONAUTOMATIONHEADER = \
 | 
|---|
| [184615] | 19 |         Fragmentation/Automation/createMatrixNrLookup.hpp \
 | 
|---|
| [447481] | 20 |         Fragmentation/Automation/extractJobIds.hpp \
 | 
|---|
| [27594e] | 21 |         Fragmentation/Automation/FragmentationChargeDensity.hpp \
 | 
|---|
| [376a3b] | 22 |         Fragmentation/Automation/FragmentationResults.hpp \
 | 
|---|
| [ffe057] | 23 |         Fragmentation/Automation/MPQCFragmentController.hpp \
 | 
|---|
| [17c03f] | 24 |         Fragmentation/Automation/parseKeySetFile.hpp \
 | 
|---|
| [ffe057] | 25 |         Fragmentation/Automation/SpecificFragmentController.hpp \
 | 
|---|
 | 26 |         Fragmentation/Automation/SpecificFragmentController_impl.hpp
 | 
|---|
 | 27 |         
 | 
|---|
 | 28 | if CONDVMG
 | 
|---|
 | 29 | FRAGMENTATIONAUTOMATIONHEADER += \
 | 
|---|
| [238868] | 30 |         Fragmentation/Automation/VMGDebugGridFragmentController.hpp \
 | 
|---|
| [ffe057] | 31 |         Fragmentation/Automation/VMGFragmentController.hpp
 | 
|---|
 | 32 | endif
 | 
|---|
 | 33 | 
 | 
|---|
 | 34 | noinst_LTLIBRARIES += libMolecuilderFragmentationAutomation.la
 | 
|---|
 | 35 | libMolecuilderFragmentationAutomation_la_includedir = $(includedir)/MoleCuilder/Fragmentation/Automation/
 | 
|---|
 | 36 | libMolecuilderFragmentationAutomation_la_CPPFLAGS = ${BOOST_CPPFLAGS} ${CodePatterns_CFLAGS} $(JobMarket_CFLAGS)
 | 
|---|
 | 37 | libMolecuilderFragmentationAutomation_la_LDFLAGS = -ldl ${BOOST_LDFLAGS}
 | 
|---|
 | 38 | libMolecuilderFragmentationAutomation_la_LIBADD = \
 | 
|---|
 | 39 |         ${CodePatterns_LIBS}
 | 
|---|
 | 40 | 
 | 
|---|
 | 41 | 
 | 
|---|
 | 42 | nobase_libMolecuilderFragmentationAutomation_la_include_HEADERS = ${FRAGMENTATIONAUTOMATIONHEADER}
 | 
|---|
 | 43 | 
 | 
|---|
 | 44 | ## Define the source file list for the "libexample-@MOLECUILDER_API_VERSION@.la"
 | 
|---|
 | 45 | ## target.  Note that @MOLECUILDER_API_VERSION@ is not interpreted by Automake and
 | 
|---|
 | 46 | ## will therefore be treated as if it were literally part of the target name,
 | 
|---|
 | 47 | ## and the variable name derived from that.
 | 
|---|
 | 48 | ## The file extension .cc is recognized by Automake, and makes it produce
 | 
|---|
 | 49 | ## rules which invoke the C++ compiler to produce a libtool object file (.lo)
 | 
|---|
 | 50 | ## from each source file.  Note that it is not necessary to list header files
 | 
|---|
 | 51 | ## which are already listed elsewhere in a _HEADERS variable assignment.
 | 
|---|
 | 52 | libMolecuilderFragmentationAutomation_la_SOURCES = ${FRAGMENTATIONAUTOMATIONSOURCE}
 | 
|---|
 | 53 | 
 | 
|---|
 | 54 | ## Instruct libtool to include ABI version information in the generated shared
 | 
|---|
 | 55 | ## library file (.so).  The library ABI version is defined in configure.ac, so
 | 
|---|
 | 56 | ## that all version information is kept in one place.
 | 
|---|
 | 57 | #libMolecuilderFragmentationAutomation_la_LDFLAGS = -version-info $(MOLECUILDER_SO_VERSION)
 | 
|---|
 | 58 | 
 | 
|---|
 | 59 | ## The generated configuration header is installed in its own subdirectory of
 | 
|---|
 | 60 | ## $(libdir).  The reason for this is that the configuration information put
 | 
|---|
 | 61 | ## into this header file describes the target platform the installed library
 | 
|---|
 | 62 | ## has been built for.  Thus the file must not be installed into a location
 | 
|---|
 | 63 | ## intended for architecture-independent files, as defined by the Filesystem
 | 
|---|
 | 64 | ## Hierarchy Standard (FHS).
 | 
|---|
 | 65 | ## The nodist_ prefix instructs Automake to not generate rules for including
 | 
|---|
 | 66 | ## the listed files in the distribution on 'make dist'.  Files that are listed
 | 
|---|
 | 67 | ## in _HEADERS variables are normally included in the distribution, but the
 | 
|---|
 | 68 | ## configuration header file is generated at configure time and should not be
 | 
|---|
 | 69 | ## shipped with the source tarball.
 | 
|---|
 | 70 | #libMolecuilderFragmentationAutomation_libincludedir = $(libdir)/MoleCuilder/include
 | 
|---|
 | 71 | #nodist_libMolecuilderFragmentationAutomation_libinclude_HEADERS = $(top_builddir)/libmolecuilder_config.h
 | 
|---|
 | 72 | 
 | 
|---|
 | 73 | ## Install the generated pkg-config file (.pc) into the expected location for
 | 
|---|
 | 74 | ## architecture-dependent package configuration information.  Occasionally,
 | 
|---|
 | 75 | ## pkg-config files are also used for architecture-independent data packages,
 | 
|---|
 | 76 | ## in which case the correct install location would be $(datadir)/pkgconfig.
 | 
|---|
 | 77 | #pkgconfigdir = $(libdir)/pkgconfig
 | 
|---|
 | 78 | #pkgconfig_DATA = $(top_builddir)/MoleCuilder.pc
 | 
|---|