| [146c26d] | 1 | # PLEASE adhere to the alphabetical ordering in this Makefile!
 | 
|---|
 | 2 | # Also indentation by a single tab
 | 
|---|
 | 3 | 
 | 
|---|
 | 4 | FRAGMENTATIONSUMMATIONSOURCE = \
 | 
|---|
| [e920061] | 5 |         Fragmentation/Summation/IndexSet.cpp \
 | 
|---|
| [fb69e9] | 6 |         Fragmentation/Summation/IndexSetContainer.cpp \
 | 
|---|
| [e920061] | 7 |         Fragmentation/Summation/SubsetMap.cpp
 | 
|---|
| [146c26d] | 8 | 
 | 
|---|
 | 9 | FRAGMENTATIONSUMMATIONHEADER = \
 | 
|---|
| [ff9963] | 10 |         Fragmentation/Summation/AllLevelOrthogonalSummator.hpp \
 | 
|---|
 | 11 |         Fragmentation/Summation/AllLevelSummator.hpp \
 | 
|---|
| [20b3df] | 12 |         Fragmentation/Summation/HeaderPrinter.hpp \
 | 
|---|
| [e920061] | 13 |         Fragmentation/Summation/IndexSet.hpp \
 | 
|---|
 | 14 |         Fragmentation/Summation/IndexSetContainer.hpp \
 | 
|---|
 | 15 |         Fragmentation/Summation/OrthogonalSummation.hpp \
 | 
|---|
 | 16 |         Fragmentation/Summation/OrthogonalSummation_impl.hpp \
 | 
|---|
| [c6ca23] | 17 |         Fragmentation/Summation/OrthogonalSummator.hpp \
 | 
|---|
| [0398bd] | 18 |         Fragmentation/Summation/OrthogonalSumUpPerLevel.hpp \
 | 
|---|
| [1f66c7] | 19 |         Fragmentation/Summation/printKeyNames.hpp \
 | 
|---|
| [e920061] | 20 |         Fragmentation/Summation/SetValue.hpp \
 | 
|---|
 | 21 |         Fragmentation/Summation/SetValueMap.hpp \
 | 
|---|
 | 22 |         Fragmentation/Summation/SortedVector.hpp \
 | 
|---|
| [c40e15d] | 23 |         Fragmentation/Summation/SubsetMap.hpp \
 | 
|---|
 | 24 |         Fragmentation/Summation/Summation.hpp \
 | 
|---|
 | 25 |         Fragmentation/Summation/Summation_impl.hpp \
 | 
|---|
| [beb16e] | 26 |         Fragmentation/Summation/Summator.hpp \
 | 
|---|
| [0398bd] | 27 |         Fragmentation/Summation/SumUpPerLevel.hpp \
 | 
|---|
| [c42a43] | 28 |         Fragmentation/Summation/ValuePrinter.hpp \
 | 
|---|
| [27afbf] | 29 |         Fragmentation/Summation/writeTable.hpp \
 | 
|---|
| [beb16e] | 30 |         Fragmentation/Summation/ZeroInstance.hpp
 | 
|---|
| [e920061] | 31 | 
 | 
|---|
 | 32 | 
 | 
|---|
 | 33 | noinst_LTLIBRARIES += libMolecuilderFragmentationSummation.la
 | 
|---|
 | 34 | libMolecuilderFragmentationSummation_la_includedir = $(includedir)/MoleCuilder/Fragmentation/Summation/
 | 
|---|
| [146c26d] | 35 | libMolecuilderFragmentationSummation_la_CPPFLAGS = ${BOOST_CPPFLAGS} ${CodePatterns_CFLAGS}
 | 
|---|
 | 36 | libMolecuilderFragmentationSummation_la_LDFLAGS = -ldl ${BOOST_LDFLAGS}
 | 
|---|
 | 37 | libMolecuilderFragmentationSummation_la_LIBADD = \
 | 
|---|
 | 38 |         ${CodePatterns_LIBS}
 | 
|---|
 | 39 | 
 | 
|---|
 | 40 | 
 | 
|---|
 | 41 | nobase_libMolecuilderFragmentationSummation_la_include_HEADERS = ${FRAGMENTATIONSUMMATIONHEADER}
 | 
|---|
 | 42 | 
 | 
|---|
 | 43 | ## Define the source file list for the "libexample-@MOLECUILDER_API_VERSION@.la"
 | 
|---|
 | 44 | ## target.  Note that @MOLECUILDER_API_VERSION@ is not interpreted by Automake and
 | 
|---|
 | 45 | ## will therefore be treated as if it were literally part of the target name,
 | 
|---|
 | 46 | ## and the variable name derived from that.
 | 
|---|
 | 47 | ## The file extension .cc is recognized by Automake, and makes it produce
 | 
|---|
 | 48 | ## rules which invoke the C++ compiler to produce a libtool object file (.lo)
 | 
|---|
 | 49 | ## from each source file.  Note that it is not necessary to list header files
 | 
|---|
 | 50 | ## which are already listed elsewhere in a _HEADERS variable assignment.
 | 
|---|
 | 51 | libMolecuilderFragmentationSummation_la_SOURCES = ${FRAGMENTATIONSUMMATIONSOURCE}
 | 
|---|
 | 52 | 
 | 
|---|
 | 53 | ## Instruct libtool to include ABI version information in the generated shared
 | 
|---|
 | 54 | ## library file (.so).  The library ABI version is defined in configure.ac, so
 | 
|---|
 | 55 | ## that all version information is kept in one place.
 | 
|---|
 | 56 | #libMolecuilderFragmentationSummation_la_LDFLAGS = -version-info $(MOLECUILDER_SO_VERSION)
 | 
|---|
 | 57 | 
 | 
|---|
 | 58 | ## The generated configuration header is installed in its own subdirectory of
 | 
|---|
 | 59 | ## $(libdir).  The reason for this is that the configuration information put
 | 
|---|
 | 60 | ## into this header file describes the target platform the installed library
 | 
|---|
 | 61 | ## has been built for.  Thus the file must not be installed into a location
 | 
|---|
 | 62 | ## intended for architecture-independent files, as defined by the Filesystem
 | 
|---|
 | 63 | ## Hierarchy Standard (FHS).
 | 
|---|
 | 64 | ## The nodist_ prefix instructs Automake to not generate rules for including
 | 
|---|
 | 65 | ## the listed files in the distribution on 'make dist'.  Files that are listed
 | 
|---|
 | 66 | ## in _HEADERS variables are normally included in the distribution, but the
 | 
|---|
 | 67 | ## configuration header file is generated at configure time and should not be
 | 
|---|
 | 68 | ## shipped with the source tarball.
 | 
|---|
 | 69 | #libMolecuilderFragmentationSummation_libincludedir = $(libdir)/MoleCuilder/include
 | 
|---|
 | 70 | #nodist_libMolecuilderFragmentationSummation_libinclude_HEADERS = $(top_builddir)/libmolecuilder_config.h
 | 
|---|
 | 71 | 
 | 
|---|
 | 72 | ## Install the generated pkg-config file (.pc) into the expected location for
 | 
|---|
 | 73 | ## architecture-dependent package configuration information.  Occasionally,
 | 
|---|
 | 74 | ## pkg-config files are also used for architecture-independent data packages,
 | 
|---|
 | 75 | ## in which case the correct install location would be $(datadir)/pkgconfig.
 | 
|---|
 | 76 | #pkgconfigdir = $(libdir)/pkgconfig
 | 
|---|
 | 77 | #pkgconfig_DATA = $(top_builddir)/MoleCuilder.pc
 | 
|---|