[00f983] | 1 | LIBSCGROUPSOURCES = \
|
---|
| 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 |
|
---|
| 10 | LIBSCGROUPHEADERS = \
|
---|
| 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 |
|
---|
| 20 | lib_LTLIBRARIES +=
|
---|
| 21 | noinst_LTLIBRARIES += libSCgroup.la
|
---|
| 22 | libSCgroup_la_includedir = $(includedir)/util/group
|
---|
| 23 | libSCgroup_la_CPPFLAGS = $(AM_CPPFLAGS)
|
---|
| 24 | libSCgroup_la_LDFLAGS = $(AM_LDFLAGS)
|
---|
| 25 | libSCgroup_la_LIBADD =
|
---|
| 26 |
|
---|
| 27 | nobase_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.
|
---|
| 37 | libSCgroup_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 |
|
---|
| 58 | GROUPTESTS = \
|
---|
| 59 | memtest \
|
---|
| 60 | messtest \
|
---|
| 61 | pooltest \
|
---|
| 62 | prttest \
|
---|
| 63 | rnglocktest \
|
---|
| 64 | thrtest
|
---|
| 65 |
|
---|
| 66 | check_PROGRAMS += $(GROUPTESTS)
|
---|
| 67 | noinst_PROGRAMS += $(GROUPTESTS)
|
---|
| 68 |
|
---|
| 69 | GROUPLIBS = \
|
---|
| 70 | libSCgroup.la \
|
---|
| 71 | libSCkeyval.la \
|
---|
| 72 | libSCmisc.la \
|
---|
| 73 | libSCstate.la \
|
---|
| 74 | libSCclass.la \
|
---|
| 75 | libSCcontainer.la \
|
---|
| 76 | libSCref.la
|
---|
| 77 |
|
---|
| 78 | memtest_SOURCES = memtest.cc
|
---|
| 79 | memtest_LDADD = \
|
---|
| 80 | libSCgroup.la \
|
---|
| 81 | libSCkeyval.la \
|
---|
| 82 | libSCmisc.la \
|
---|
| 83 | libSCstate.la \
|
---|
| 84 | libSCclass.la \
|
---|
| 85 | libSCcontainer.la \
|
---|
| 86 | libSCref.la
|
---|
| 87 |
|
---|
| 88 | messtest_SOURCES = messtest.cc
|
---|
| 89 | messtest_LDADD = \
|
---|
| 90 | libSCgroup.la \
|
---|
| 91 | libSCkeyval.la \
|
---|
| 92 | libSCmisc.la \
|
---|
| 93 | libSCstate.la \
|
---|
| 94 | libSCclass.la \
|
---|
| 95 | libSCcontainer.la \
|
---|
| 96 | libSCref.la
|
---|
| 97 |
|
---|
| 98 | pooltest_SOURCES = pooltest.cc
|
---|
| 99 | pooltest_LDADD = \
|
---|
| 100 | $(GROUPLIBS)
|
---|
| 101 |
|
---|
| 102 | prttest_SOURCES = prttest.cc
|
---|
| 103 | prttest_LDADD = \
|
---|
| 104 | $(GROUPLIBS)
|
---|
| 105 |
|
---|
| 106 | rnglocktest_SOURCES = rnglocktest.cc
|
---|
| 107 | rnglocktest_LDADD = \
|
---|
| 108 | libSCmisc.la libSCgroup.la
|
---|
| 109 |
|
---|
| 110 | thrtest_SOURCES = thrtest.cc
|
---|
| 111 | thrtest_LDADD = \
|
---|
| 112 | libSCgroup.la \
|
---|
| 113 | libSCkeyval.la \
|
---|
| 114 | libSCmisc.la \
|
---|
| 115 | libSCstate.la \
|
---|
| 116 | libSCclass.la \
|
---|
| 117 | libSCcontainer.la \
|
---|
| 118 | libSCref.la
|
---|
| 119 |
|
---|