source: src/Graph/Makefile.am@ e9f307

Candidate_v1.7.0 stable
Last change on this file since e9f307 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
RevLine 
[53d6b2]1# PLEASE adhere to the alphabetical ordering in this Makefile!
2# Also indentation by a single tab
3
4GRAPHSOURCE = \
[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 \
[f5ea10]12 Graph/DepthFirstSearchAnalysis.cpp \
[5061d9]13 Graph/Graph6Reader.cpp \
14 Graph/Graph6Writer.cpp
[f5ea10]15
[53d6b2]16GRAPHHEADER = \
[bccbe9]17 Graph/AdjacencyList.hpp \
[455573]18 Graph/BondGraph.hpp \
[d24ef58]19 Graph/BoostGraphCreator.hpp \
[bccbe9]20 Graph/BoostGraphHelpers.hpp \
[1356af]21 Graph/BoostGraphCreator_impl.hpp \
[bccbe9]22 Graph/BreadthFirstSearchGatherer.hpp \
[455573]23 Graph/BuildInducedSubgraph.hpp \
24 Graph/ConnectedSubgraph.hpp \
25 Graph/CyclicStructureAnalysis.hpp \
[6d551c]26 Graph/DepthFirstSearchAnalysis.hpp \
[f5ea10]27 Graph/Graph6Reader.hpp \
[5061d9]28 Graph/Graph6Writer.hpp \
[6d551c]29 Graph/ListOfLocalAtoms.hpp
[53d6b2]30
[455573]31noinst_LTLIBRARIES += libMolecuilderGraph.la
[214240]32libMolecuilderGraph_la_includedir = $(includedir)/MoleCuilder/
[455573]33
[53d6b2]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.
[708798]49#libMolecuilderGraph_la_LDFLAGS = -version-info $(MOLECUILDER_SO_VERSION)
[53d6b2]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.