source: src/Fragmentation/Makefile.am@ 7672284

Action_Thermostats Add_AtomRandomPerturbation Add_RotateAroundBondAction Add_SelectAtomByNameAction Adding_Graph_to_ChangeBondActions Adding_MD_integration_tests Adding_StructOpt_integration_tests AutomationFragmentation_failures Candidate_v1.6.0 Candidate_v1.6.1 ChangeBugEmailaddress ChangingTestPorts ChemicalSpaceEvaluator Debian_Package_split Debian_package_split_molecuildergui_only Disabling_MemDebug Docu_Python_wait EmpiricalPotential_contain_HomologyGraph_documentation Enable_parallel_make_install Enhance_userguide Enhanced_StructuralOptimization Enhanced_StructuralOptimization_continued Example_ManyWaysToTranslateAtom Exclude_Hydrogens_annealWithBondGraph FitPartialCharges_GlobalError Fix_ChronosMutex Fix_StatusMsg Fix_StepWorldTime_single_argument Fix_Verbose_Codepatterns ForceAnnealing_goodresults ForceAnnealing_oldresults ForceAnnealing_tocheck ForceAnnealing_with_BondGraph ForceAnnealing_with_BondGraph_continued ForceAnnealing_with_BondGraph_continued_betteresults ForceAnnealing_with_BondGraph_contraction-expansion GeometryObjects Gui_displays_atomic_force_velocity IndependentFragmentGrids_IntegrationTest JobMarket_RobustOnKillsSegFaults JobMarket_StableWorkerPool JobMarket_unresolvable_hostname_fix PartialCharges_OrthogonalSummation PythonUI_with_named_parameters QtGui_reactivate_TimeChanged_changes Recreated_GuiChecks RotateToPrincipalAxisSystem_UndoRedo StoppableMakroAction TremoloParser_IncreasedPrecision TremoloParser_MultipleTimesteps Ubuntu_1604_changes stable
Last change on this file since 7672284 was 53ef0d4, checked in by Frederik Heber <heber@…>, 8 years ago

FIX: Missing CodePatterns_LDFLAGS or AM_LDFLAGS or missing boost system dependency in executable and unit tests.

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