source: src/Graph/Makefile.am

stable v1.7.0
Last change on this file was 5061d9, checked in by Frederik Heber <frederik.heber@…>, 5 years ago

Added action to print selected atoms as graph6 string.

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