source: ThirdParty/mpqc_open/src/lib/util/group/Makefile.am@ 00f983

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 Combining_Subpackages 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 ODR_violation_mpqc_open PartialCharges_OrthogonalSummation PythonUI_with_named_parameters QtGui_reactivate_TimeChanged_changes Recreated_GuiChecks RotateToPrincipalAxisSystem_UndoRedo StoppableMakroAction Subpackage_levmar Subpackage_vmg ThirdParty_MPQC_rebuilt_buildsystem TremoloParser_IncreasedPrecision TremoloParser_MultipleTimesteps Ubuntu_1604_changes stable
Last change on this file since 00f983 was 00f983, checked in by Frederik Heber <heber@…>, 8 years ago

Added generated Makefile.am's.

  • Property mode set to 100644
File size: 3.9 KB
Line 
1LIBSCGROUPSOURCES = \
2 message.cc messimpl.cc messproc.cc messint.cc \
3 reduce.cc topology.cc hcube.cc \
4 rnglock.cc memory.cc memmsg.cc pool.cc \
5 memamsg.cc memproc.cc \
6 pregtime.cc thread.cc memiter.cc memrdma.cc
7
8# file.cc fileproc.cc globcnt.cc hcube.cc memamsg.cc memarmci.cc memiter.cc memmsg.cc memmtmpi.cc memory.cc memproc.cc memrdma.cc memshm.cc message.cc messimpl.cc messint.cc messmpi.cc messproc.cc messshm.cc mstate.cc pool.cc pregtime.cc reduce.cc rnglock.cc thpthd.cc thpuma.cc thread.cc topology.cc
9
10LIBSCGROUPHEADERS = \
11 message.h \
12 topology.h hcube.h \
13 rnglock.h memory.h memmsg.h pool.h \
14 memamsg.h memproc.h \
15 pregtime.h thread.h memiter.h memrdma.h
16
17
18# file.h fileproc.h globcnt.h hcube.h LIBS.h linkage.h memamsg.h memarmci.h memiter.h memmsg.h memmtmpi.h memory.h memproc.h memrdma.h memshm.h message.h messaget.h messmpi.h messshm.h mstate.h pool.h pregtime.h rnglock.h thpthd.h thpuma.h thread.h topology.h
19
20lib_LTLIBRARIES +=
21noinst_LTLIBRARIES += libSCgroup.la
22libSCgroup_la_includedir = $(includedir)/util/group
23libSCgroup_la_CPPFLAGS = $(AM_CPPFLAGS)
24libSCgroup_la_LDFLAGS = $(AM_LDFLAGS)
25libSCgroup_la_LIBADD =
26
27nobase_libSCgroup_la_include_HEADERS = ${LIBSCGROUPHEADERS}
28
29## Define the source file list for the "libexample-@MPQC_API_VERSION@.la"
30## target. Note that @MPQC_API_VERSION@ is not interpreted by Automake and
31## will therefore be treated as if it were literally part of the target name,
32## and the variable name derived from that.
33## The file extension .cc is recognized by Automake, and makes it produce
34## rules which invoke the C++ compiler to produce a libtool object file (.lo)
35## from each source file. Note that it is not necessary to list header files
36## which are already listed elsewhere in a _HEADERS variable assignment.
37libSCgroup_la_SOURCES = ${LIBSCGROUPSOURCES}
38
39## Instruct libtool to include ABI version information in the generated shared
40## library file (.so). The library ABI version is defined in configure.ac, so
41## that all version information is kept in one place.
42#libSCgroup_la_LDFLAGS += $(AM_LDFLAGS) -version-info $(MPQC_SO_VERSION)
43
44## The generated configuration header is installed in its own subdirectory of
45## $(libdir). The reason for this is that the configuration information put
46## into this header file describes the target platform the installed library
47## has been built for. Thus the file must not be installed into a location
48## intended for architecture-independent files, as defined by the Filesystem
49## Hierarchy Standard (FHS).
50## The nodist_ prefix instructs Automake to not generate rules for including
51## the listed files in the distribution on 'make dist'. Files that are listed
52## in _HEADERS variables are normally included in the distribution, but the
53## configuration header file is generated at configure time and should not be
54## shipped with the source tarball.
55#libSCgroup_libincludedir = $(libdir)/util/group/include
56#nodist_libSCgroup_libinclude_HEADERS = $(top_builddir)/src/lib/scconfig.h
57
58GROUPTESTS = \
59 memtest \
60 messtest \
61 pooltest \
62 prttest \
63 rnglocktest \
64 thrtest
65
66check_PROGRAMS += $(GROUPTESTS)
67noinst_PROGRAMS += $(GROUPTESTS)
68
69GROUPLIBS = \
70 libSCgroup.la \
71 libSCkeyval.la \
72 libSCmisc.la \
73 libSCstate.la \
74 libSCclass.la \
75 libSCcontainer.la \
76 libSCref.la
77
78memtest_SOURCES = memtest.cc
79memtest_LDADD = \
80 libSCgroup.la \
81 libSCkeyval.la \
82 libSCmisc.la \
83 libSCstate.la \
84 libSCclass.la \
85 libSCcontainer.la \
86 libSCref.la
87
88messtest_SOURCES = messtest.cc
89messtest_LDADD = \
90 libSCgroup.la \
91 libSCkeyval.la \
92 libSCmisc.la \
93 libSCstate.la \
94 libSCclass.la \
95 libSCcontainer.la \
96 libSCref.la
97
98pooltest_SOURCES = pooltest.cc
99pooltest_LDADD = \
100 $(GROUPLIBS)
101
102prttest_SOURCES = prttest.cc
103prttest_LDADD = \
104 $(GROUPLIBS)
105
106rnglocktest_SOURCES = rnglocktest.cc
107rnglocktest_LDADD = \
108 libSCmisc.la libSCgroup.la
109
110thrtest_SOURCES = thrtest.cc
111thrtest_LDADD = \
112 libSCgroup.la \
113 libSCkeyval.la \
114 libSCmisc.la \
115 libSCstate.la \
116 libSCclass.la \
117 libSCcontainer.la \
118 libSCref.la
119
Note: See TracBrowser for help on using the repository browser.