source: src/Graph/Makefile.am@ a844d8

Candidate_v1.6.1
Last change on this file since a844d8 was f5ea10, checked in by Frederik Heber <frederik.heber@…>, 7 years ago

Added Graph6Reader, extended BoostGraphCreator, added ChemicalSpaceEvaluatorAction.

  • added visible generateAllInducedSubgraphs to Extractors.
  • TESTS: due to new option "graph6" containing a digit we needed to modify moltest_check.py to also scan for digits and not just letters.
  • DOCU: Added evaluate-chemical-space to userguide.
  • Property mode set to 100644
File size: 3.1 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 \
13 Graph/Graph6Reader.cpp
14
[53d6b2]15GRAPHHEADER = \
[bccbe9]16 Graph/AdjacencyList.hpp \
[455573]17 Graph/BondGraph.hpp \
[d24ef58]18 Graph/BoostGraphCreator.hpp \
[bccbe9]19 Graph/BoostGraphHelpers.hpp \
[1356af]20 Graph/BoostGraphCreator_impl.hpp \
[bccbe9]21 Graph/BreadthFirstSearchGatherer.hpp \
[455573]22 Graph/BuildInducedSubgraph.hpp \
23 Graph/ConnectedSubgraph.hpp \
24 Graph/CyclicStructureAnalysis.hpp \
[6d551c]25 Graph/DepthFirstSearchAnalysis.hpp \
[f5ea10]26 Graph/Graph6Reader.hpp \
[6d551c]27 Graph/ListOfLocalAtoms.hpp
[53d6b2]28
[455573]29noinst_LTLIBRARIES += libMolecuilderGraph.la
[214240]30libMolecuilderGraph_la_includedir = $(includedir)/MoleCuilder/
[455573]31
[53d6b2]32nobase_libMolecuilderGraph_la_include_HEADERS = ${GRAPHHEADER}
33
34## Define the source file list for the "libexample-@MOLECUILDER_API_VERSION@.la"
35## target. Note that @MOLECUILDER_API_VERSION@ is not interpreted by Automake and
36## will therefore be treated as if it were literally part of the target name,
37## and the variable name derived from that.
38## The file extension .cc is recognized by Automake, and makes it produce
39## rules which invoke the C++ compiler to produce a libtool object file (.lo)
40## from each source file. Note that it is not necessary to list header files
41## which are already listed elsewhere in a _HEADERS variable assignment.
42libMolecuilderGraph_la_SOURCES = ${GRAPHSOURCE}
43
44## Instruct libtool to include ABI version information in the generated shared
45## library file (.so). The library ABI version is defined in configure.ac, so
46## that all version information is kept in one place.
[708798]47#libMolecuilderGraph_la_LDFLAGS = -version-info $(MOLECUILDER_SO_VERSION)
[53d6b2]48
49## The generated configuration header is installed in its own subdirectory of
50## $(libdir). The reason for this is that the configuration information put
51## into this header file describes the target platform the installed library
52## has been built for. Thus the file must not be installed into a location
53## intended for architecture-independent files, as defined by the Filesystem
54## Hierarchy Standard (FHS).
55## The nodist_ prefix instructs Automake to not generate rules for including
56## the listed files in the distribution on 'make dist'. Files that are listed
57## in _HEADERS variables are normally included in the distribution, but the
58## configuration header file is generated at configure time and should not be
59## shipped with the source tarball.
60#libMolecuilderGraph_libincludedir = $(libdir)/MoleCuilder/include
61#nodist_libMolecuilderGraph_libinclude_HEADERS = $(top_builddir)/libmolecuilder_config.h
62
63## Install the generated pkg-config file (.pc) into the expected location for
64## architecture-dependent package configuration information. Occasionally,
65## pkg-config files are also used for architecture-independent data packages,
66## in which case the correct install location would be $(datadir)/pkgconfig.
67#pkgconfigdir = $(libdir)/pkgconfig
68#pkgconfig_DATA = $(top_builddir)/MoleCuilder.pc
Note: See TracBrowser for help on using the repository browser.