[53d6b2] | 1 | # PLEASE adhere to the alphabetical ordering in this Makefile!
|
---|
| 2 | # Also indentation by a single tab
|
---|
| 3 |
|
---|
| 4 | GRAPHSOURCE = \
|
---|
[bccbe9] | 5 | Graph/AdjacencyList.cpp \
|
---|
[455573] | 6 | Graph/BondGraph.cpp \
|
---|
[d24ef58] | 7 | Graph/BoostGraphCreator.cpp \
|
---|
[bccbe9] | 8 | Graph/BreadthFirstSearchGatherer.cpp \
|
---|
[455573] | 9 | Graph/BuildInducedSubgraph.cpp \
|
---|
| 10 | Graph/ConnectedSubgraph.cpp \
|
---|
| 11 | Graph/CyclicStructureAnalysis.cpp \
|
---|
| 12 | Graph/DepthFirstSearchAnalysis.cpp
|
---|
[53d6b2] | 13 |
|
---|
| 14 | GRAPHHEADER = \
|
---|
[bccbe9] | 15 | Graph/AdjacencyList.hpp \
|
---|
[455573] | 16 | Graph/BondGraph.hpp \
|
---|
[d24ef58] | 17 | Graph/BoostGraphCreator.hpp \
|
---|
[bccbe9] | 18 | Graph/BoostGraphHelpers.hpp \
|
---|
[1356af] | 19 | Graph/BoostGraphCreator_impl.hpp \
|
---|
[bccbe9] | 20 | Graph/BreadthFirstSearchGatherer.hpp \
|
---|
[455573] | 21 | Graph/BuildInducedSubgraph.hpp \
|
---|
| 22 | Graph/ConnectedSubgraph.hpp \
|
---|
| 23 | Graph/CyclicStructureAnalysis.hpp \
|
---|
[6d551c] | 24 | Graph/DepthFirstSearchAnalysis.hpp \
|
---|
| 25 | Graph/ListOfLocalAtoms.hpp
|
---|
[53d6b2] | 26 |
|
---|
[455573] | 27 | noinst_LTLIBRARIES += libMolecuilderGraph.la
|
---|
[214240] | 28 | libMolecuilderGraph_la_includedir = $(includedir)/MoleCuilder/
|
---|
[455573] | 29 |
|
---|
[53d6b2] | 30 | nobase_libMolecuilderGraph_la_include_HEADERS = ${GRAPHHEADER}
|
---|
| 31 |
|
---|
| 32 | ## Define the source file list for the "libexample-@MOLECUILDER_API_VERSION@.la"
|
---|
| 33 | ## target. Note that @MOLECUILDER_API_VERSION@ is not interpreted by Automake and
|
---|
| 34 | ## will therefore be treated as if it were literally part of the target name,
|
---|
| 35 | ## and the variable name derived from that.
|
---|
| 36 | ## The file extension .cc is recognized by Automake, and makes it produce
|
---|
| 37 | ## rules which invoke the C++ compiler to produce a libtool object file (.lo)
|
---|
| 38 | ## from each source file. Note that it is not necessary to list header files
|
---|
| 39 | ## which are already listed elsewhere in a _HEADERS variable assignment.
|
---|
| 40 | libMolecuilderGraph_la_SOURCES = ${GRAPHSOURCE}
|
---|
| 41 |
|
---|
| 42 | ## Instruct libtool to include ABI version information in the generated shared
|
---|
| 43 | ## library file (.so). The library ABI version is defined in configure.ac, so
|
---|
| 44 | ## that all version information is kept in one place.
|
---|
[708798] | 45 | #libMolecuilderGraph_la_LDFLAGS = -version-info $(MOLECUILDER_SO_VERSION)
|
---|
[53d6b2] | 46 |
|
---|
| 47 | ## The generated configuration header is installed in its own subdirectory of
|
---|
| 48 | ## $(libdir). The reason for this is that the configuration information put
|
---|
| 49 | ## into this header file describes the target platform the installed library
|
---|
| 50 | ## has been built for. Thus the file must not be installed into a location
|
---|
| 51 | ## intended for architecture-independent files, as defined by the Filesystem
|
---|
| 52 | ## Hierarchy Standard (FHS).
|
---|
| 53 | ## The nodist_ prefix instructs Automake to not generate rules for including
|
---|
| 54 | ## the listed files in the distribution on 'make dist'. Files that are listed
|
---|
| 55 | ## in _HEADERS variables are normally included in the distribution, but the
|
---|
| 56 | ## configuration header file is generated at configure time and should not be
|
---|
| 57 | ## shipped with the source tarball.
|
---|
| 58 | #libMolecuilderGraph_libincludedir = $(libdir)/MoleCuilder/include
|
---|
| 59 | #nodist_libMolecuilderGraph_libinclude_HEADERS = $(top_builddir)/libmolecuilder_config.h
|
---|
| 60 |
|
---|
| 61 | ## Install the generated pkg-config file (.pc) into the expected location for
|
---|
| 62 | ## architecture-dependent package configuration information. Occasionally,
|
---|
| 63 | ## pkg-config files are also used for architecture-independent data packages,
|
---|
| 64 | ## in which case the correct install location would be $(datadir)/pkgconfig.
|
---|
| 65 | #pkgconfigdir = $(libdir)/pkgconfig
|
---|
| 66 | #pkgconfig_DATA = $(top_builddir)/MoleCuilder.pc
|
---|