source: src/Fragmentation/Makefile.am@ 11cc05

Last change on this file since 11cc05 was 97d6ab, checked in by Frederik Heber <heber@…>, 11 years ago

Added SphericalPointDistribution for points on spherical surface according to VSEPR.

  • Property mode set to 100644
File size: 6.0 KB
RevLine 
[a9b86d]1# PLEASE adhere to the alphabetical ordering in this Makefile!
2# Also indentation by a single tab
3
4FRAGMENTATIONSOURCE = \
[ca8bea]5 Fragmentation/Exporters/ExportGraph_ToFiles.cpp \
[786d28]6 Fragmentation/Exporters/ExportGraph_ToJobs.cpp \
[ca8bea]7 Fragmentation/Exporters/ExportGraph.cpp \
[c3df23]8 Fragmentation/Exporters/HydrogenPool.cpp \
[7d5fcd]9 Fragmentation/Exporters/SaturatedFragment.cpp \
[8387e0]10 Fragmentation/Homology/FragmentEdge.cpp \
11 Fragmentation/Homology/FragmentNode.cpp \
[4694df]12 Fragmentation/Homology/HomologyContainer.cpp \
[7b6b21f]13 Fragmentation/Homology/HomologyGraph.cpp \
[730d7a]14 Fragmentation/AdaptivityMap.cpp \
[212c179]15 Fragmentation/BondsPerShortestPath.cpp \
[a9b86d]16 Fragmentation/EnergyMatrix.cpp \
17 Fragmentation/ForceMatrix.cpp \
[246e13]18 Fragmentation/Fragmentation.cpp \
[d9a032]19 Fragmentation/fragmentation_helpers.cpp \
[dadc74]20 Fragmentation/Graph.cpp \
[a9b86d]21 Fragmentation/helpers.cpp \
22 Fragmentation/HessianMatrix.cpp \
[0331ee]23 Fragmentation/Interfragmenter.cpp \
[f0674a]24 Fragmentation/KeySet.cpp \
[a03d25]25 Fragmentation/MatrixContainer.cpp \
[f67817f]26 Fragmentation/PowerSetGenerator.cpp \
[dcbb5d]27 Fragmentation/SortIndex.cpp \
[a03d25]28 Fragmentation/UniqueFragments.cpp
[a9b86d]29
30FRAGMENTATIONHEADER = \
[ca8bea]31 Fragmentation/Exporters/ExportGraph_ToFiles.hpp \
[786d28]32 Fragmentation/Exporters/ExportGraph_ToJobs.hpp \
[ca8bea]33 Fragmentation/Exporters/ExportGraph.hpp \
[c3df23]34 Fragmentation/Exporters/HydrogenPool.hpp \
[7d5fcd]35 Fragmentation/Exporters/SaturatedFragment.hpp \
[97d6ab]36 Fragmentation/Exporters/SphericalPointDistribution.hpp \
[8387e0]37 Fragmentation/Homology/FragmentEdge.hpp \
38 Fragmentation/Homology/FragmentNode.hpp \
[4694df]39 Fragmentation/Homology/HomologyContainer.hpp \
[7b6b21f]40 Fragmentation/Homology/HomologyGraph.hpp \
[730d7a]41 Fragmentation/AdaptivityMap.hpp \
[f96874]42 Fragmentation/AtomMask.hpp \
[212c179]43 Fragmentation/BondsPerShortestPath.hpp \
[a9b86d]44 Fragmentation/defs.hpp \
45 Fragmentation/EnergyMatrix.hpp \
46 Fragmentation/ForceMatrix.hpp \
[246e13]47 Fragmentation/Fragmentation.hpp \
[f67817f]48 Fragmentation/fragmentation_helpers.hpp \
[dadc74]49 Fragmentation/Graph.hpp \
50 Fragmentation/helpers.cpp \
[a9b86d]51 Fragmentation/helpers.hpp \
52 Fragmentation/HessianMatrix.hpp \
[262ecc]53 Fragmentation/HydrogenSaturation_enum.hpp \
[0331ee]54 Fragmentation/Interfragmenter.hpp \
[f0674a]55 Fragmentation/KeySet.hpp \
[a03d25]56 Fragmentation/MatrixContainer.hpp \
[f96874]57 Fragmentation/Mask.hpp \
58 Fragmentation/MoleculeMask.hpp \
[f67817f]59 Fragmentation/PowerSetGenerator.hpp \
[dcbb5d]60 Fragmentation/SortIndex.hpp \
[a03d25]61 Fragmentation/UniqueFragments.hpp
[a9b86d]62
[fbf143]63lib_LTLIBRARIES += \
64 libMolecuilderFragmentation_KeysetsContainer.la
[fe0355]65noinst_LTLIBRARIES += \
66 libMolecuilderFragmentation.la \
67 libMolecuilderFragmentation_getFromKeyset.la \
68 libMolecuilderFragmentation_getFromKeysetStub.la
[214240]69libMolecuilderFragmentation_la_includedir = $(includedir)/MoleCuilder/
70libMolecuilderFragmentation_KeysetsContainer_la_includedir = $(includedir)/MoleCuilder/
71libMolecuilderFragmentation_getFromKeyset_la_includedir = $(includedir)/MoleCuilder/
72libMolecuilderFragmentation_getFromKeysetStub_la_includedir = $(includedir)/MoleCuilder/
[ac9ca4]73libMolecuilderFragmentation_la_CPPFLAGS = $(AM_CPPFLAGS)
74libMolecuilderFragmentation_la_LDFLAGS = $(AM_LDFLAGS)
[fbf143]75libMolecuilderFragmentation_KeysetsContainer_la_LIBADD = \
76 $(CodePatterns_LIBS)
[ac9ca4]77libMolecuilderFragmentation_la_LIBADD =
78if CONDJOBMARKET
79libMolecuilderFragmentation_la_CPPFLAGS += ${JobMarket_CFLAGS}
80libMolecuilderFragmentation_la_LDFLAGS += $(JobMarket_LDFLAGS)
81libMolecuilderFragmentation_la_LIBADD += $(JobMarket_LIBS)
82endif
[a9b86d]83
84nobase_libMolecuilderFragmentation_la_include_HEADERS = ${FRAGMENTATIONHEADER}
[fbf143]85nobase_libMolecuilderFragmentation_KeysetsContainer_la_include_HEADERS = \
86 Fragmentation/KeySetsContainer.hpp \
87 Fragmentation/parseKeySetFile.hpp
[a9b86d]88
89## Define the source file list for the "libexample-@MOLECUILDER_API_VERSION@.la"
90## target. Note that @MOLECUILDER_API_VERSION@ is not interpreted by Automake and
91## will therefore be treated as if it were literally part of the target name,
92## and the variable name derived from that.
93## The file extension .cc is recognized by Automake, and makes it produce
94## rules which invoke the C++ compiler to produce a libtool object file (.lo)
95## from each source file. Note that it is not necessary to list header files
96## which are already listed elsewhere in a _HEADERS variable assignment.
97libMolecuilderFragmentation_la_SOURCES = ${FRAGMENTATIONSOURCE}
[fbf143]98libMolecuilderFragmentation_KeysetsContainer_la_SOURCES = \
99 Fragmentation/KeySetsContainer.cpp \
100 Fragmentation/parseKeySetFile.cpp
[fe0355]101libMolecuilderFragmentation_getFromKeyset_la_SOURCES = \
102 Fragmentation/Homology/HomologyGraph_getFromKeyset.cpp
103libMolecuilderFragmentation_getFromKeysetStub_la_SOURCES = \
104 Fragmentation/Homology/HomologyGraph_getFromKeysetStub.cpp
[a9b86d]105
106## Instruct libtool to include ABI version information in the generated shared
107## library file (.so). The library ABI version is defined in configure.ac, so
108## that all version information is kept in one place.
[fbf143]109libMolecuilderFragmentation_KeysetsContainer_la_LDFLAGS = -version-info $(MOLECUILDER_SO_VERSION)
[a9b86d]110
111## The generated configuration header is installed in its own subdirectory of
112## $(libdir). The reason for this is that the configuration information put
113## into this header file describes the target platform the installed library
114## has been built for. Thus the file must not be installed into a location
115## intended for architecture-independent files, as defined by the Filesystem
116## Hierarchy Standard (FHS).
117## The nodist_ prefix instructs Automake to not generate rules for including
118## the listed files in the distribution on 'make dist'. Files that are listed
119## in _HEADERS variables are normally included in the distribution, but the
120## configuration header file is generated at configure time and should not be
121## shipped with the source tarball.
[fbf143]122libMolecuilderFragmentation_KeysetsContainer_libincludedir = $(libdir)/MoleCuilder/include
123nodist_libMolecuilderFragmentation_KeysetsContainer_libinclude_HEADERS = $(top_builddir)/libmolecuilder_config.h
[a9b86d]124
125## Install the generated pkg-config file (.pc) into the expected location for
126## architecture-dependent package configuration information. Occasionally,
127## pkg-config files are also used for architecture-independent data packages,
128## in which case the correct install location would be $(datadir)/pkgconfig.
129#pkgconfigdir = $(libdir)/pkgconfig
130#pkgconfig_DATA = $(top_builddir)/MoleCuilder.pc
Note: See TracBrowser for help on using the repository browser.