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