1
1

* The last of the build system optimizations. Combine the component and

component/base Makefile.am files, reducing the time configure spends
  stamping out Makefiles at the end
* Install base_impl.h file when devel-headers are being installed

This commit was SVN r8200.
Этот коммит содержится в:
Brian Barrett 2005-11-20 01:03:01 +00:00
родитель 1358781bd8
Коммит 8faa1884f0
58 изменённых файлов: 706 добавлений и 1102 удалений

Просмотреть файл

@ -284,7 +284,7 @@ AC_DEFUN([MCA_CONFIGURE_PROJECT],[
MCA_$1_FRAMEWORK_COMPONENT_STATIC_SUBDIRS="$MCA_$1_FRAMEWORK_COMPONENT_STATIC_SUBDIRS [\$(MCA_]mca_framework[_STATIC_SUBDIRS)]"
fi
if test "mca_framework" != "common" ; then
MCA_$1_FRAMEWORK_LIBS="$MCA_$1_FRAMEWORK_LIBS [mca/]mca_framework[/base/libmca_]mca_framework[_base.la]"
MCA_$1_FRAMEWORK_LIBS="$MCA_$1_FRAMEWORK_LIBS [mca/]mca_framework[/libmca_]mca_framework[.la]"
fi
MCA_$1_FRAMEWORK_LIBS="$MCA_$1_FRAMEWORK_LIBS [\$(MCA_]mca_framework[_STATIC_LTLIBS)]"
m4_ifdef([MCA_]mca_framework[_CONFIG],
@ -411,10 +411,7 @@ AC_DEFUN([MCA_CONFIGURE_FRAMEWORK],[
# add all the makefiles for the framework to the CONFIG_FILES.
# Don't add common/base, since it doesn't exist
m4_if([$2], [common],
[AC_CONFIG_FILES([$1/mca/$2/Makefile])],
[AC_CONFIG_FILES([$1/mca/$2/Makefile $1/mca/$2/base/Makefile])])
AC_CONFIG_FILES([$1/mca/$2/Makefile])
# Create the final .h file that will be included in the type's
# top-level glue. This lists all the static components. We don't

Просмотреть файл

@ -16,19 +16,24 @@
# $HEADER$
#
# main library setup
noinst_LTLIBRARIES = libmca_allocator.la
libmca_allocator_la_SOURCES =
# header setup
nobase_ompi_HEADERS = $(headers)
ompidir = $(includedir)/openmpi/ompi/mca/allocator
SUBDIRS = base
# Source code files
# local files
headers = allocator.h
libmca_allocator_la_SOURCES += $(headers)
# Conditionally install the header files
if WANT_INSTALL_HEADERS
ompidir = $(includedir)/openmpi/ompi/mca/allocator
ompi_HEADERS = $(headers)
else
ompidir = $(includedir)
nobase_ompi_HEADERS += $(headers)
endif
include base/Makefile.am
distclean-local:
rm -f base/static-components.h

Просмотреть файл

@ -16,29 +16,9 @@
# $HEADER$
#
headers += \
base/base.h
noinst_LTLIBRARIES = libmca_allocator_base.la
# Source code files
headers = \
base.h
libmca_allocator_base_la_SOURCES = \
$(headers) \
allocator_base_open.c \
allocator_base_close.c
# Conditionally install the header files
if WANT_INSTALL_HEADERS
ompidir = $(includedir)/openmpi/ompi/mca/allocator/base
ompi_HEADERS = $(headers)
else
ompidir = $(includedir)
endif
distclean-local:
rm -f static-components.h
libmca_allocator_la_SOURCES += \
base/allocator_base_open.c \
base/allocator_base_close.c

Просмотреть файл

@ -16,20 +16,24 @@
# $HEADER$
#
# main library setup
noinst_LTLIBRARIES = libmca_bml.la
libmca_bml_la_SOURCES =
# header setup
nobase_ompi_HEADERS = $(headers)
ompidir = $(includedir)/openmpi/ompi/mca/bml
SUBDIRS = base
# Source code files
# local files
headers = bml.h
libmca_bml_la_SOURCES += $(headers)
# Conditionally install the header files
if WANT_INSTALL_HEADERS
ompidir = $(includedir)/openmpi/ompi/mca/bml
dist_ompi_HEADERS = $(headers)
nodist_ompi_HEADERS = $(nodist_headers)
else
ompidir = $(includedir)
nobase_ompi_HEADERS += $(headers)
endif
include base/Makefile.am
distclean-local:
rm -f base/static-components.h

Просмотреть файл

@ -16,36 +16,16 @@
# $HEADER$
#
headers += \
base/base.h \
base/bml_base_btl.h \
base/bml_base_endpoint.h
noinst_LTLIBRARIES = libmca_bml_base.la
# Source code files
headers = \
base.h \
bml_base_btl.h \
bml_base_endpoint.h
libmca_bml_base_la_SOURCES = \
$(headers) \
bml_base_btl.c \
bml_base_btl.h \
bml_base_endpoint.h \
bml_base_endpoint.c \
bml_base_init.c \
bml_base_close.c \
bml_base_open.c
# Conditionally install the header files
if WANT_INSTALL_HEADERS
ompidir = $(includedir)/openmpi/ompi/mca/bml/base
ompi_HEADERS = $(headers)
else
ompidir = $(includedir)
endif
distclean-local:
rm -f static-components.h
libmca_bml_la_SOURCES += \
base/bml_base_btl.c \
base/bml_base_btl.h \
base/bml_base_endpoint.h \
base/bml_base_endpoint.c \
base/bml_base_init.c \
base/bml_base_close.c \
base/bml_base_open.c

Просмотреть файл

@ -16,19 +16,24 @@
# $HEADER$
#
# main library setup
noinst_LTLIBRARIES = libmca_btl.la
libmca_btl_la_SOURCES =
# header setup
nobase_ompi_HEADERS = $(headers)
ompidir = $(includedir)/openmpi/ompi/mca/btl
SUBDIRS = base
# Source code files
# local files
headers = btl.h
libmca_btl_la_SOURCES += $(headers)
# Conditionally install the header files
if WANT_INSTALL_HEADERS
ompidir = $(includedir)/openmpi/ompi/mca/btl
ompi_HEADERS = $(headers)
else
ompidir = $(includedir)
nobase_ompi_HEADERS += $(headers)
endif
include base/Makefile.am
distclean-local:
rm -f base/static-components.h

Просмотреть файл

@ -16,34 +16,14 @@
# $HEADER$
#
AM_CPPFLAGS = $(OPAL_LTDL_CPPFLAGS)
dist_pkgdata_DATA = base/help-mpi-btl-base.txt
noinst_LTLIBRARIES = libmca_btl_base.la
headers += \
base/base.h \
base/btl_base_error.h
# Source code files
dist_pkgdata_DATA = help-mpi-btl-base.txt
headers = \
base.h \
btl_base_error.h
libmca_btl_base_la_SOURCES = \
$(headers) \
btl_base_close.c \
btl_base_error.c \
btl_base_open.c \
btl_base_select.c
# Conditionally install the header files
if WANT_INSTALL_HEADERS
ompidir = $(includedir)/openmpi/ompi/mca/btl/base
ompi_HEADERS = $(headers)
else
ompidir = $(includedir)
endif
distclean-local:
rm -f static-components.h
libmca_btl_la_SOURCES += \
base/btl_base_close.c \
base/btl_base_error.c \
base/btl_base_open.c \
base/btl_base_select.c

Просмотреть файл

@ -16,19 +16,24 @@
# $HEADER$
#
# main library setup
noinst_LTLIBRARIES = libmca_coll.la
libmca_coll_la_SOURCES =
# header setup
nobase_ompi_HEADERS = $(headers)
ompidir = $(includedir)/openmpi/ompi/mca/coll
SUBDIRS = base
# Source code files
# local files
headers = coll.h
libmca_coll_la_SOURCES += $(headers)
# Conditionally install the header files
if WANT_INSTALL_HEADERS
ompidir = $(includedir)/openmpi/ompi/mca/coll
ompi_HEADERS = $(headers)
else
ompidir = $(includedir)
nobase_ompi_HEADERS += $(headers)
endif
include base/Makefile.am
distclean-local:
rm -f base/static-components.h

Просмотреть файл

@ -16,33 +16,15 @@
# $HEADER$
#
AM_CPPFLAGS = $(OPAL_LTDL_CPPFLAGS)
dist_pkgdata_DATA = base/help-mca-coll-base.txt
noinst_LTLIBRARIES = libmca_coll_base.la
headers += \
base/base.h \
base/coll_tags.h
dist_pkgdata_DATA = help-mca-coll-base.txt
headers = \
base.h \
coll_tags.h
libmca_coll_base_la_SOURCES = \
$(headers) \
coll_base_close.c \
coll_base_comm_select.c \
coll_base_comm_unselect.c \
coll_base_find_available.c \
coll_base_open.c
# Conditionally install the header files
if WANT_INSTALL_HEADERS
ompidir = $(includedir)/openmpi/ompi/mca/coll/base
ompi_HEADERS = $(headers)
else
ompidir = $(includedir)
endif
distclean-local:
rm -f static-components.h
libmca_coll_la_SOURCES += \
base/coll_base_close.c \
base/coll_base_comm_select.c \
base/coll_base_comm_unselect.c \
base/coll_base_find_available.c \
base/coll_base_open.c

Просмотреть файл

@ -16,6 +16,3 @@
# $HEADER$
#
SUBDIRS =

Просмотреть файл

@ -16,19 +16,24 @@
# $HEADER$
#
# main library setup
noinst_LTLIBRARIES = libmca_io.la
libmca_io_la_SOURCES =
# header setup
nobase_ompi_HEADERS = $(headers)
ompidir = $(includedir)/openmpi/ompi/mca/io
SUBDIRS = base
# Source code files
# local files
headers = io.h
libmca_io_la_SOURCES += $(headers)
# Conditionally install the header files
if WANT_INSTALL_HEADERS
ompidir = $(includedir)/openmpi/ompi/mca/io
ompi_HEADERS = $(headers)
else
ompidir = $(includedir)
nobase_ompi_HEADERS += $(headers)
endif
include base/Makefile.am
distclean-local:
rm -f base/static-components.h

Просмотреть файл

@ -16,34 +16,15 @@
# $HEADER$
#
headers += \
base/base.h \
base/io_base_request.h
AM_CPPFLAGS = $(OPAL_LTDL_CPPFLAGS)
noinst_LTLIBRARIES = libmca_io_base.la
headers = \
base.h \
io_base_request.h
libmca_io_base_la_SOURCES = \
$(headers) \
io_base_component_list.c \
io_base_close.c \
io_base_delete.c \
io_base_file_select.c \
io_base_find_available.c \
io_base_open.c \
io_base_request.c
# Conditionally install the header files
if WANT_INSTALL_HEADERS
ompidir = $(includedir)/openmpi/ompi/mca/io/base
ompi_HEADERS = $(headers)
else
ompidir = $(includedir)
endif
distclean-local:
rm -f static-components.h
libmca_io_la_SOURCES += \
base/io_base_component_list.c \
base/io_base_close.c \
base/io_base_delete.c \
base/io_base_file_select.c \
base/io_base_find_available.c \
base/io_base_open.c \
base/io_base_request.c

Просмотреть файл

@ -16,19 +16,24 @@
# $HEADER$
#
# main library setup
noinst_LTLIBRARIES = libmca_mpool.la
libmca_mpool_la_SOURCES =
# header setup
nobase_ompi_HEADERS = $(headers)
ompidir = $(includedir)/openmpi/ompi/mca/mpool
SUBDIRS = base
# Source code files
# local files
headers = mpool.h
libmca_mpool_la_SOURCES += $(headers)
# Conditionally install the header files
if WANT_INSTALL_HEADERS
ompidir = $(includedir)/openmpi/ompi/mca/mpool
ompi_HEADERS = $(headers)
else
ompidir = $(includedir)
nobase_ompi_HEADERS += $(headers)
endif
include base/Makefile.am
distclean-local:
rm -f base/static-components.h

Просмотреть файл

@ -16,34 +16,14 @@
# $HEADER$
#
headers += \
base/base.h \
base/mpool_base_mem_cb.h
noinst_LTLIBRARIES = libmca_mpool_base.la
# Source code files
headers = \
base.h \
mpool_base_mem_cb.h
libmca_mpool_base_la_SOURCES = \
$(headers) \
mpool_base_open.c \
mpool_base_close.c \
mpool_base_init.c \
mpool_base_lookup.c \
mpool_base_alloc.c \
mpool_base_mem_cb.c
# Conditionally install the header files
if WANT_INSTALL_HEADERS
ompidir = $(includedir)/openmpi/ompi/mca/mpool/base
ompi_HEADERS = $(headers)
else
ompidir = $(includedir)
endif
distclean-local:
rm -f static-components.h
libmca_mpool_la_SOURCES += \
base/mpool_base_open.c \
base/mpool_base_close.c \
base/mpool_base_init.c \
base/mpool_base_lookup.c \
base/mpool_base_alloc.c \
base/mpool_base_mem_cb.c

Просмотреть файл

@ -16,24 +16,24 @@
# $HEADER$
#
# main library setup
noinst_LTLIBRARIES = libmca_pml.la
libmca_pml_la_SOURCES =
# header setup
nobase_ompi_HEADERS = $(headers)
ompidir = $(includedir)/openmpi/ompi/mca/pml
SUBDIRS = base
# Source code files
# local files
headers = pml.h
nodist_headers = pml_direct_call.h
libmca_pml_la_SOURCES += $(headers)
# Conditionally install the header files
if WANT_INSTALL_HEADERS
ompidir = $(includedir)/openmpi/ompi/mca/pml
dist_ompi_HEADERS = $(headers)
nodist_ompi_HEADERS = $(nodist_headers)
else
ompidir = $(includedir)
nobase_ompi_HEADERS += $(headers)
endif
include base/Makefile.am
distclean-local:
rm -f pml_direct_call.h
rm -f base/static-components.h

Просмотреть файл

@ -16,40 +16,20 @@
# $HEADER$
#
headers += \
base/base.h \
base/pml_base_bsend.h \
base/pml_base_module_exchange.h \
base/pml_base_request.h \
base/pml_base_recvreq.h \
base/pml_base_sendreq.h
noinst_LTLIBRARIES = libmca_pml_base.la
# Source code files
headers = \
base.h \
pml_base_bsend.h \
pml_base_module_exchange.h \
pml_base_request.h \
pml_base_recvreq.h \
pml_base_sendreq.h
libmca_pml_base_la_SOURCES = \
$(headers) \
pml_base_bsend.c \
pml_base_close.c \
pml_base_module_exchange.c \
pml_base_open.c \
pml_base_recvreq.c \
pml_base_request.c \
pml_base_select.c \
pml_base_sendreq.c
# Conditionally install the header files
if WANT_INSTALL_HEADERS
ompidir = $(includedir)/openmpi/ompi/mca/pml/base
ompi_HEADERS = $(headers)
else
ompidir = $(includedir)
endif
distclean-local:
rm -f static-components.h
libmca_pml_la_SOURCES += \
base/pml_base_bsend.c \
base/pml_base_close.c \
base/pml_base_module_exchange.c \
base/pml_base_open.c \
base/pml_base_recvreq.c \
base/pml_base_request.c \
base/pml_base_select.c \
base/pml_base_sendreq.c

Просмотреть файл

@ -16,19 +16,24 @@
# $HEADER$
#
# main library setup
noinst_LTLIBRARIES = libmca_ptl.la
libmca_ptl_la_SOURCES =
# header setup
nobase_ompi_HEADERS = $(headers)
ompidir = $(includedir)/openmpi/ompi/mca/ptl
SUBDIRS = base
# Source code files
# local files
headers = ptl.h
libmca_ptl_la_SOURCES += $(headers)
# Conditionally install the header files
if WANT_INSTALL_HEADERS
ompidir = $(includedir)/openmpi/ompi/mca/ptl
ompi_HEADERS = $(headers)
else
ompidir = $(includedir)
nobase_ompi_HEADERS += $(headers)
endif
include base/Makefile.am
distclean-local:
rm -f base/static-components.h

Просмотреть файл

@ -16,45 +16,25 @@
# $HEADER$
#
headers += \
base/base.h \
base/ptl_base_comm.h \
base/ptl_base_fragment.h \
base/ptl_base_header.h \
base/ptl_base_match.h \
base/ptl_base_recvfrag.h \
base/ptl_base_recvreq.h \
base/ptl_base_sendfrag.h \
base/ptl_base_sendreq.h
noinst_LTLIBRARIES = libmca_ptl_base.la
# Source code files
headers = \
base.h \
ptl_base_comm.h \
ptl_base_fragment.h \
ptl_base_header.h \
ptl_base_match.h \
ptl_base_recvfrag.h \
ptl_base_recvreq.h \
ptl_base_sendfrag.h \
ptl_base_sendreq.h
libmca_ptl_base_la_SOURCES = \
$(headers) \
ptl_base_close.c \
ptl_base_comm.c \
ptl_base_fragment.c \
ptl_base_match.c \
ptl_base_open.c \
ptl_base_recvfrag.c \
ptl_base_recvreq.c \
ptl_base_select.c \
ptl_base_sendfrag.c \
ptl_base_sendreq.c
# Conditionally install the header files
if WANT_INSTALL_HEADERS
ompidir = $(includedir)/openmpi/ompi/mca/ptl/base
ompi_HEADERS = $(headers)
else
ompidir = $(includedir)
endif
distclean-local:
rm -f static-components.h
libmca_ptl_la_SOURCES += \
base/ptl_base_close.c \
base/ptl_base_comm.c \
base/ptl_base_fragment.c \
base/ptl_base_match.c \
base/ptl_base_open.c \
base/ptl_base_recvfrag.c \
base/ptl_base_recvreq.c \
base/ptl_base_select.c \
base/ptl_base_sendfrag.c \
base/ptl_base_sendreq.c

Просмотреть файл

@ -16,17 +16,24 @@
# $HEADER$
#
SUBDIRS = base
# main library setup
noinst_LTLIBRARIES = libmca_rcache.la
libmca_rcache_la_SOURCES =
# Source code files
# header setup
nobase_ompi_HEADERS = $(headers)
ompidir = $(includedir)/openmpi/ompi/mca/rcache
# local files
headers = rcache.h
libmca_rcache_la_SOURCES += $(headers)
# Conditionally install the header files
if WANT_INSTALL_HEADERS
ompidir = $(includedir)/openmpi/ompi/mca/rcache
ompi_HEADERS = $(headers)
else
ompidir = $(includedir)
nobase_ompi_HEADERS += $(headers)
endif
include base/Makefile.am
distclean-local:
rm -f base/static-components.h

Просмотреть файл

@ -16,30 +16,10 @@
# $HEADER$
#
include $(top_srcdir)/config/Makefile.options
headers += \
base/base.h
noinst_LTLIBRARIES = libmca_rcache_base.la
# Source code files
headers = \
base.h
libmca_rcache_base_la_SOURCES = \
$(headers) \
rcache_base_open.c \
rcache_base_create.c \
rcache_base_close.c
# Conditionally install the header files
if WANT_INSTALL_HEADERS
ompidir = $(includedir)/openmpi/ompi/mca/rcache/base
ompi_HEADERS = $(headers)
else
ompidir = $(includedir)
endif
distclean-local:
rm -f static-components.h
libmca_rcache_la_SOURCES += \
base/rcache_base_open.c \
base/rcache_base_create.c \
base/rcache_base_close.c

Просмотреть файл

@ -16,19 +16,24 @@
# $HEADER$
#
# main library setup
noinst_LTLIBRARIES = libmca_topo.la
libmca_topo_la_SOURCES =
# header setup
nobase_ompi_HEADERS = $(headers)
ompidir = $(includedir)/openmpi/ompi/mca/topo
SUBDIRS = base
# Source code files
# local files
headers = topo.h
libmca_topo_la_SOURCES += $(headers)
# Conditionally install the header files
if WANT_INSTALL_HEADERS
ompidir = $(includedir)/openmpi/ompi/mca/topo
ompi_HEADERS = $(headers)
else
ompidir = $(includedir)
nobase_ompi_HEADERS += $(headers)
endif
include base/Makefile.am
distclean-local:
rm -f base/static-components.h

Просмотреть файл

@ -16,43 +16,24 @@
# $HEADER$
#
headers += \
base/base.h
AM_CPPFLAGS = $(OPAL_LTDL_CPPFLAGS)
noinst_LTLIBRARIES = libmca_topo_base.la
headers = \
base.h
libmca_topo_base_la_SOURCES = \
$(headers) \
topo_base_cart_coords.c \
topo_base_cart_create.c \
topo_base_cartdim_get.c \
topo_base_cart_get.c \
topo_base_cart_rank.c \
topo_base_cart_shift.c \
topo_base_cart_sub.c \
topo_base_find_available.c \
topo_base_graph_create.c \
topo_base_graphdims_get.c \
topo_base_graph_get.c \
topo_base_graph_neighbors.c \
topo_base_graph_neighbors_count.c \
topo_base_open.c \
topo_base_close.c \
topo_base_comm_select.c \
topo_base_comm_unselect.c
# Conditionally install the header files
if WANT_INSTALL_HEADERS
ompidir = $(includedir)/openmpi/ompi/mca/topo/base
ompi_HEADERS = $(headers)
else
ompidir = $(includedir)
endif
distclean-local:
rm -f static-components.h
libmca_topo_la_SOURCES += \
base/topo_base_cart_coords.c \
base/topo_base_cart_create.c \
base/topo_base_cartdim_get.c \
base/topo_base_cart_get.c \
base/topo_base_cart_rank.c \
base/topo_base_cart_shift.c \
base/topo_base_cart_sub.c \
base/topo_base_find_available.c \
base/topo_base_graph_create.c \
base/topo_base_graphdims_get.c \
base/topo_base_graph_get.c \
base/topo_base_graph_neighbors.c \
base/topo_base_graph_neighbors_count.c \
base/topo_base_open.c \
base/topo_base_close.c \
base/topo_base_comm_select.c \
base/topo_base_comm_unselect.c

Просмотреть файл

@ -16,17 +16,24 @@
# $HEADER$
#
SUBDIRS = base
# main library setup
noinst_LTLIBRARIES = libmca_maffinity.la
libmca_maffinity_la_SOURCES =
# Source code files
# header setup
nobase_opal_HEADERS =
opaldir = $(includedir)/openmpi/opal/mca/maffinity
# local files
headers = maffinity.h maffinity_types.h
libmca_maffinity_la_SOURCES += $(headers)
# Conditionally install the header files
if WANT_INSTALL_HEADERS
ompidir = $(includedir)/openmpi/opal/mca/maffinity
ompi_HEADERS = $(headers)
else
ompidir = $(includedir)
nobase_opal_HEADERS += $(headers)
endif
include base/Makefile.am
distclean-local:
rm -f base/static-components.h

Просмотреть файл

@ -16,29 +16,12 @@
# $HEADER$
#
headers += \
base/base.h \
base/internal.h
noinst_LTLIBRARIES = libmca_maffinity_base.la
headers = \
base.h \
internal.h
libmca_maffinity_base_la_SOURCES = \
$(headers) \
maffinity_base_close.c \
maffinity_base_select.c \
maffinity_base_open.c \
maffinity_base_wrappers.c
# Conditionally install the header files
if WANT_INSTALL_HEADERS
ompidir = $(includedir)/openmpi/opal/mca/maffinity/base
ompi_HEADERS = $(headers)
else
ompidir = $(includedir)
endif
distclean-local:
rm -f static-components.h
libmca_maffinity_la_SOURCES += \
base/maffinity_base_close.c \
base/maffinity_base_select.c \
base/maffinity_base_open.c \
base/maffinity_base_wrappers.c

Просмотреть файл

@ -16,16 +16,24 @@
# $HEADER$
#
SUBDIRS = base
# main library setup
noinst_LTLIBRARIES = libmca_memory.la
libmca_memory_la_SOURCES =
# Source code files
# header setup
nobase_opal_HEADERS =
opaldir = $(includedir)/openmpi/opal/mca/memory
# local files
headers = memory.h
libmca_memory_la_SOURCES += $(headers)
# Conditionally install the header files
if WANT_INSTALL_HEADERS
ompidir = $(includedir)/openmpi/opal/mca/memory
ompi_HEADERS = $(headers)
else
ompidir = $(includedir)
nobase_opal_HEADERS += $(headers)
endif
include base/Makefile.am
distclean-local:
rm -f base/static-components.h

Просмотреть файл

@ -16,26 +16,9 @@
# $HEADER$
#
headers += \
base/base.h
noinst_LTLIBRARIES = libmca_memory_base.la
headers = \
base.h
libmca_memory_base_la_SOURCES = \
$(headers) \
memory_base_close.c \
memory_base_open.c
# Conditionally install the header files
if WANT_INSTALL_HEADERS
ompidir = $(includedir)/openmpi/opal/mca/memory/base
ompi_HEADERS = $(headers)
else
ompidir = $(includedir)
endif
distclean-local:
rm -f static-components.h
libmca_memory_la_SOURCES += \
base/memory_base_close.c \
base/memory_base_open.c

Просмотреть файл

@ -16,18 +16,24 @@
# $HEADER$
#
SUBDIRS = base
DIST_SUBDIRS = base
# main library setup
noinst_LTLIBRARIES = libmca_paffinity.la
libmca_paffinity_la_SOURCES =
# Source code files
# header setup
nobase_opal_HEADERS =
opaldir = $(includedir)/openmpi/opal/mca/paffinity
# local files
headers = paffinity.h
libmca_paffinity_la_SOURCES += $(headers)
# Conditionally install the header files
if WANT_INSTALL_HEADERS
ompidir = $(includedir)/openmpi/opal/mca/paffinity
ompi_HEADERS = $(headers)
else
ompidir = $(includedir)
nobase_opal_HEADERS += $(headers)
endif
include base/Makefile.am
distclean-local:
rm -f base/static-components.h

Просмотреть файл

@ -16,29 +16,12 @@
# $HEADER$
#
headers += \
base/base.h \
base/internal.h
noinst_LTLIBRARIES = libmca_paffinity_base.la
headers = \
base.h \
internal.h
libmca_paffinity_base_la_SOURCES = \
$(headers) \
paffinity_base_close.c \
paffinity_base_select.c \
paffinity_base_open.c \
paffinity_base_wrappers.c
# Conditionally install the header files
if WANT_INSTALL_HEADERS
ompidir = $(includedir)/openmpi/opal/mca/paffinity/base
ompi_HEADERS = $(headers)
else
ompidir = $(includedir)
endif
distclean-local:
rm -f static-components.h
libmca_paffinity_la_SOURCES += \
base/paffinity_base_close.c \
base/paffinity_base_select.c \
base/paffinity_base_open.c \
base/paffinity_base_wrappers.c

Просмотреть файл

@ -16,17 +16,27 @@
# $HEADER$
#
SUBDIRS = base
DIST_SUBDIRS = base
# main library setup
noinst_LTLIBRARIES = libmca_timer.la
libmca_timer_la_SOURCES =
# Source code files
# header setup
nobase_opal_HEADERS =
nobase_nodist_opal_HEADERS =
opaldir = $(includedir)/openmpi/opal/mca/timer
# local files
headers = timer.h
nodist_headers =
libmca_timer_la_SOURCES += $(headers)
# Conditionally install the header files
if WANT_INSTALL_HEADERS
ompidir = $(includedir)/openmpi/opal/mca/timer
ompi_HEADERS = $(headers)
else
ompidir = $(includedir)
nobase_opal_HEADERS += $(headers)
nobase_nodist_opal_HEADERS += $(nodist_headers)
endif
include base/Makefile.am
distclean-local:
rm -f base/static-components.h

Просмотреть файл

@ -16,29 +16,12 @@
# $HEADER$
#
headers += \
base/base.h \
base/timer_base_null.h
libmca_timer_la_SOURCES += \
base/timer_base_close.c \
base/timer_base_open.c
noinst_LTLIBRARIES = libmca_timer_base.la
headers = \
base.h \
timer_base_null.h
libmca_timer_base_la_SOURCES = \
$(headers) \
timer_base_close.c \
timer_base_open.c
# Conditionally install the header files
if WANT_INSTALL_HEADERS
ompidir = $(includedir)/openmpi/opal/mca/timer/base
ompi_HEADERS = $(headers)
nodist_ompi_HEADERS = base_impl.h
else
ompidir = $(includedir)
nodist_ompi_HEADERS =
endif
distclean-local:
rm -f static-components.h
nodist_headers += base/base_impl.h

Просмотреть файл

@ -16,18 +16,24 @@
# $HEADER$
#
SUBDIRS = base
# main library setup
noinst_LTLIBRARIES = libmca_errmgr.la
libmca_errmgr_la_SOURCES =
# Source code files
# header setup
nobase_orte_HEADERS = $(headers)
ortedir = $(includedir)/openmpi/orte/mca/errmgr
headers = \
errmgr.h
# local files
headers = errmgr.h
libmca_errmgr_la_SOURCES += $(headers)
# Conditionally install the header files
if WANT_INSTALL_HEADERS
ortedir = $(includedir)/openmpi/orte/mca/errmgr
orte_HEADERS = $(headers)
else
ortedir = $(includedir)
nobase_orte_HEADERS += $(headers)
endif
include base/Makefile.am
distclean-local:
rm -f base/static-components.h

Просмотреть файл

@ -16,33 +16,11 @@
# $HEADER$
#
headers += \
base/base.h
noinst_LTLIBRARIES = libmca_errmgr_base.la
# Source code files
headers = \
base.h
# Library
libmca_errmgr_base_la_SOURCES = \
$(headers) \
errmgr_base_close.c \
errmgr_base_select.c \
errmgr_base_open.c \
errmgr_base_fns.c
# Conditionally install the header files
if WANT_INSTALL_HEADERS
ortedir = $(includedir)/openmpi/orte/mca/errmgr/base
orte_HEADERS = $(headers)
else
ortedir = $(includedir)
endif
distclean-local:
rm -f static-components.h
libmca_errmgr_la_SOURCES += \
base/errmgr_base_close.c \
base/errmgr_base_select.c \
base/errmgr_base_open.c \
base/errmgr_base_fns.c

Просмотреть файл

@ -16,18 +16,24 @@
# $HEADER$
#
SUBDIRS = base
# main library setup
noinst_LTLIBRARIES = libmca_gpr.la
libmca_gpr_la_SOURCES =
# Source code files
# header setup
nobase_orte_HEADERS = $(headers)
ortedir = $(includedir)/openmpi/orte/mca/gpr
headers = gpr.h \
gpr_types.h
# local files
headers = gpr.h gpr_types.h
libmca_gpr_la_SOURCES += $(headers)
# Conditionally install the header files
if WANT_INSTALL_HEADERS
ortedir = $(includedir)/openmpi/orte/mca/gpr
orte_HEADERS = $(headers)
else
ortedir = $(includedir)
nobase_orte_HEADERS += $(headers)
endif
include base/Makefile.am
distclean-local:
rm -f base/static-components.h

Просмотреть файл

@ -16,47 +16,30 @@
# $HEADER$
#
noinst_LTLIBRARIES = libmca_gpr_base.la
# Source code files
headers = \
base.h
headers += \
base/base.h
libmca_gpr_base_la_SOURCES = \
$(headers) \
gpr_base_open.c \
gpr_base_close.c \
gpr_base_select.c \
gpr_base_simplified_put.c \
gpr_base_simplified_subscribe.c \
gpr_base_xfer_payload.c \
data_type_support/gpr_data_type_packing_fns.c \
data_type_support/gpr_data_type_unpacking_fns.c \
unpack_api_response/gpr_base_unpack_cleanup.c \
unpack_api_response/gpr_base_unpack_del_index.c \
unpack_api_response/gpr_base_print_dump.c \
unpack_api_response/gpr_base_dump_notify.c \
unpack_api_response/gpr_base_unpack_arithmetic_ops.c \
unpack_api_response/gpr_base_unpack_put_get.c \
unpack_api_response/gpr_base_unpack_subscribe.c \
pack_api_cmd/gpr_base_pack_cleanup.c \
pack_api_cmd/gpr_base_pack_del_index.c \
pack_api_cmd/gpr_base_pack_dump.c \
pack_api_cmd/gpr_base_pack_arithmetic_ops.c \
pack_api_cmd/gpr_base_pack_put_get.c \
pack_api_cmd/gpr_base_pack_subscribe.c
# Conditionally install the header files
if WANT_INSTALL_HEADERS
ortedir = $(includedir)/openmpi/orte/mca/gpr/base
orte_HEADERS = $(headers)
else
ortedir = $(includedir)
endif
distclean-local:
rm -f static-components.h
libmca_gpr_la_SOURCES += \
base/gpr_base_open.c \
base/gpr_base_close.c \
base/gpr_base_select.c \
base/gpr_base_simplified_put.c \
base/gpr_base_simplified_subscribe.c \
base/gpr_base_xfer_payload.c \
base/data_type_support/gpr_data_type_packing_fns.c \
base/data_type_support/gpr_data_type_unpacking_fns.c \
base/unpack_api_response/gpr_base_unpack_cleanup.c \
base/unpack_api_response/gpr_base_unpack_del_index.c \
base/unpack_api_response/gpr_base_print_dump.c \
base/unpack_api_response/gpr_base_dump_notify.c \
base/unpack_api_response/gpr_base_unpack_arithmetic_ops.c \
base/unpack_api_response/gpr_base_unpack_put_get.c \
base/unpack_api_response/gpr_base_unpack_subscribe.c \
base/pack_api_cmd/gpr_base_pack_cleanup.c \
base/pack_api_cmd/gpr_base_pack_del_index.c \
base/pack_api_cmd/gpr_base_pack_dump.c \
base/pack_api_cmd/gpr_base_pack_arithmetic_ops.c \
base/pack_api_cmd/gpr_base_pack_put_get.c \
base/pack_api_cmd/gpr_base_pack_subscribe.c

Просмотреть файл

@ -16,17 +16,24 @@
# $HEADER$
#
SUBDIRS = base
# main library setup
noinst_LTLIBRARIES = libmca_iof.la
libmca_iof_la_SOURCES =
# Source code files
# header setup
nobase_orte_HEADERS = $(headers)
ortedir = $(includedir)/openmpi/orte/mca/iof
# local files
headers = iof.h
libmca_iof_la_SOURCES += $(headers)
# Conditionally install the header files
if WANT_INSTALL_HEADERS
ortedir = $(includedir)/openmpi/orte/mca/iof
orte_HEADERS = $(headers)
else
ortedir = $(includedir)
nobase_orte_HEADERS += $(headers)
endif
include base/Makefile.am
distclean-local:
rm -f base/static-components.h

Просмотреть файл

@ -16,38 +16,18 @@
# $HEADER$
#
headers += \
base/base.h \
base/iof_base_header.h \
base/iof_base_endpoint.h \
base/iof_base_fragment.h \
base/iof_base_setup.h
AM_CPPFLAGS = $(OPAL_LTDL_CPPFLAGS)
noinst_LTLIBRARIES = libmca_iof_base.la
# Source code files
headers = \
base.h \
iof_base_header.h \
iof_base_endpoint.h \
iof_base_fragment.h \
iof_base_setup.h
libmca_iof_base_la_SOURCES = \
$(headers) \
iof_base_close.c \
iof_base_open.c \
iof_base_flush.c \
iof_base_endpoint.c \
iof_base_fragment.c \
iof_base_select.c \
iof_base_setup.c
# Conditionally install the header files
if WANT_INSTALL_HEADERS
ortedir = $(includedir)/openmpi/orte/mca/iof/base
orte_HEADERS = $(headers)
else
ortedir = $(includedir)
endif
distclean-local:
rm -f static-components.h
libmca_iof_la_SOURCES += \
base/iof_base_close.c \
base/iof_base_open.c \
base/iof_base_flush.c \
base/iof_base_endpoint.c \
base/iof_base_fragment.c \
base/iof_base_select.c \
base/iof_base_setup.c

Просмотреть файл

@ -16,19 +16,24 @@
# $HEADER$
#
SUBDIRS = base
# main library setup
noinst_LTLIBRARIES = libmca_ns.la
libmca_ns_la_SOURCES =
# Source code files
# header setup
nobase_orte_HEADERS = $(headers)
ortedir = $(includedir)/openmpi/orte/mca/ns
headers = \
ns_types.h \
ns.h
# local files
headers = ns.h ns_types.h
libmca_ns_la_SOURCES += $(headers)
# Conditionally install the header files
if WANT_INSTALL_HEADERS
ortedir = $(includedir)/openmpi/orte/mca/ns
orte_HEADERS = $(headers)
else
ortedir = $(includedir)
nobase_orte_HEADERS += $(headers)
endif
include base/Makefile.am
distclean-local:
rm -f base/static-components.h

Просмотреть файл

@ -16,35 +16,13 @@
# $HEADER$
#
headers += \
base/base.h
noinst_LTLIBRARIES = libmca_ns_base.la
# Source code files
headers = \
base.h
# Library
libmca_ns_base_la_SOURCES = \
$(headers) \
ns_base_close.c \
ns_base_select.c \
ns_base_open.c \
ns_base_local_fns.c \
data_type_support/ns_data_type_packing_fns.c \
data_type_support/ns_data_type_unpacking_fns.c
# Conditionally install the header files
if WANT_INSTALL_HEADERS
ortedir = $(includedir)/openmpi/orte/mca/ns/base
orte_HEADERS = $(headers)
else
ortedir = $(includedir)
endif
distclean-local:
rm -f static-components.h
libmca_ns_la_SOURCES += \
base/ns_base_close.c \
base/ns_base_select.c \
base/ns_base_open.c \
base/ns_base_local_fns.c \
base/data_type_support/ns_data_type_packing_fns.c \
base/data_type_support/ns_data_type_unpacking_fns.c

Просмотреть файл

@ -16,18 +16,24 @@
# $HEADER$
#
SUBDIRS = base
# main library setup
noinst_LTLIBRARIES = libmca_oob.la
libmca_oob_la_SOURCES =
# Source code files
# header setup
nobase_orte_HEADERS = $(headers)
ortedir = $(includedir)/openmpi/orte/mca/oob
headers = oob.h \
oob_types.h
# local files
headers = oob.h oob_types.h
libmca_oob_la_SOURCES += $(headers)
# Conditionally install the header files
if WANT_INSTALL_HEADERS
ortedir = $(includedir)/openmpi/orte/mca/oob
orte_HEADERS = $(headers)
else
ortedir = $(includedir)
nobase_orte_HEADERS += $(headers)
endif
include base/Makefile.am
distclean-local:
rm -f base/static-components.h

Просмотреть файл

@ -16,39 +16,18 @@
# $HEADER$
#
headers += \
base/base.h
noinst_LTLIBRARIES = libmca_oob_base.la
# Source code files
headers = \
base.h
# Library
libmca_oob_base_la_SOURCES = \
$(headers) \
oob_base_barrier.c \
oob_base_close.c \
oob_base_except.c \
oob_base_init.c \
oob_base_open.c \
oob_base_ping.c \
oob_base_recv.c \
oob_base_recv_nb.c \
oob_base_send.c \
oob_base_xcast.c \
oob_base_send_nb.c
# Conditionally install the header files
if WANT_INSTALL_HEADERS
ortedir = $(includedir)/openmpi/orte/mca/oob/base
orte_HEADERS = $(headers)
else
ortedir = $(includedir)
endif
distclean-local:
rm -f static-components.h
libmca_oob_la_SOURCES += \
base/oob_base_barrier.c \
base/oob_base_close.c \
base/oob_base_except.c \
base/oob_base_init.c \
base/oob_base_open.c \
base/oob_base_ping.c \
base/oob_base_recv.c \
base/oob_base_recv_nb.c \
base/oob_base_send.c \
base/oob_base_xcast.c \
base/oob_base_send_nb.c

Просмотреть файл

@ -16,17 +16,24 @@
# $HEADER$
#
SUBDIRS = base
# main library setup
noinst_LTLIBRARIES = libmca_pls.la
libmca_pls_la_SOURCES =
# Source code files
# header setup
nobase_orte_HEADERS = $(headers)
ortedir = $(includedir)/openmpi/orte/mca/pls
# local files
headers = pls.h
libmca_pls_la_SOURCES += $(headers)
# Conditionally install the header files
if WANT_INSTALL_HEADERS
ortedir = $(includedir)/openmpi/orte/mca/pls
orte_HEADERS = $(headers)
else
ortedir = $(includedir)
nobase_orte_HEADERS += $(headers)
endif
include base/Makefile.am
distclean-local:
rm -f base/static-components.h

Просмотреть файл

@ -16,31 +16,12 @@
# $HEADER$
#
headers += \
base/base.h
noinst_LTLIBRARIES = libmca_pls_base.la
# Source code files
headers = \
base.h
libmca_pls_base_la_SOURCES = \
$(headers) \
pls_base_close.c \
pls_base_open.c \
pls_base_select.c \
pls_base_state.c \
pls_base_proxy.c
# Conditionally install the header files
if WANT_INSTALL_HEADERS
ortedir = $(includedir)/openmpi/orte/mca/pls/base
orte_HEADERS = $(headers)
else
ortedir = $(includedir)
endif
distclean-local:
rm -f static-components.h
libmca_pls_la_SOURCES += \
base/pls_base_close.c \
base/pls_base_open.c \
base/pls_base_select.c \
base/pls_base_state.c \
base/pls_base_proxy.c

Просмотреть файл

@ -16,19 +16,24 @@
# $HEADER$
#
SUBDIRS = base
# main library setup
noinst_LTLIBRARIES = libmca_ras.la
libmca_ras_la_SOURCES =
# Source code files
# header setup
nobase_orte_HEADERS = $(headers)
ortedir = $(includedir)/openmpi/orte/mca/ras
headers = \
ras_types.h \
ras.h
# local files
headers = ras.h ras_types.h
libmca_ras_la_SOURCES += $(headers)
# Conditionally install the header files
if WANT_INSTALL_HEADERS
ortedir = $(includedir)/openmpi/orte/mca/ras
orte_HEADERS = $(headers)
else
ortedir = $(includedir)
nobase_orte_HEADERS += $(headers)
endif
include base/Makefile.am
distclean-local:
rm -f base/static-components.h

Просмотреть файл

@ -16,33 +16,14 @@
# $HEADER$
#
noinst_LTLIBRARIES = libmca_ras_base.la
headers += \
base/base.h
# Source code files
headers = \
base.h
# Library
libmca_ras_base_la_SOURCES = \
$(headers) \
ras_base_alloc.c \
ras_base_allocate.c \
ras_base_close.c \
ras_base_find_available.c \
ras_base_node.h \
ras_base_node.c \
ras_base_open.c
# Conditionally install the header files
if WANT_INSTALL_HEADERS
ortedir = $(includedir)/openmpi/orte/mca/ras/base
orte_HEADERS = $(headers)
else
ortedir = $(includedir)
endif
distclean-local:
rm -f static-components.h
libmca_ras_la_SOURCES += \
base/ras_base_alloc.c \
base/ras_base_allocate.c \
base/ras_base_close.c \
base/ras_base_find_available.c \
base/ras_base_node.h \
base/ras_base_node.c \
base/ras_base_open.c

Просмотреть файл

@ -16,19 +16,24 @@
# $HEADER$
#
SUBDIRS = base
# main library setup
noinst_LTLIBRARIES = libmca_rds.la
libmca_rds_la_SOURCES =
# Source code files
# header setup
nobase_orte_HEADERS = $(headers)
ortedir = $(includedir)/openmpi/orte/mca/rds
headers = \
rds_types.h \
rds.h
# local files
headers = rds.h rds_types.h
libmca_rds_la_SOURCES += $(headers)
# Conditionally install the header files
if WANT_INSTALL_HEADERS
ortedir = $(includedir)/openmpi/orte/mca/rds
orte_HEADERS = $(headers)
else
ortedir = $(includedir)
nobase_orte_HEADERS += $(headers)
endif
include base/Makefile.am
distclean-local:
rm -f base/static-components.h

Просмотреть файл

@ -16,34 +16,12 @@
# $HEADER$
#
headers += \
base/base.h
noinst_LTLIBRARIES = libmca_rds_base.la
# Source code files
headers = \
base.h
# Library
libmca_rds_base_la_SOURCES = \
$(headers) \
rds_base_close.c \
rds_base_select.c \
rds_base_open.c \
rds_base_query.c \
rds_base_registry_fns.c
# Conditionally install the header files
if WANT_INSTALL_HEADERS
ortedir = $(includedir)/openmpi/orte/mca/rds/base
orte_HEADERS = $(headers)
else
ortedir = $(includedir)
endif
distclean-local:
rm -f static-components.h
libmca_rds_la_SOURCES += \
base/rds_base_close.c \
base/rds_base_select.c \
base/rds_base_open.c \
base/rds_base_query.c \
base/rds_base_registry_fns.c

Просмотреть файл

@ -16,19 +16,24 @@
# $HEADER$
#
SUBDIRS = base
# main library setup
noinst_LTLIBRARIES = libmca_rmaps.la
libmca_rmaps_la_SOURCES =
# Source code files
# header setup
nobase_orte_HEADERS = $(headers)
ortedir = $(includedir)/openmpi/orte/mca/rmaps
headers = \
rmaps_types.h \
rmaps.h
# local files
headers = rmaps.h rmaps_types.h
libmca_rmaps_la_SOURCES += $(headers)
# Conditionally install the header files
if WANT_INSTALL_HEADERS
ortedir = $(includedir)/openmpi/orte/mca/rmaps
orte_HEADERS = $(headers)
else
ortedir = $(includedir)
nobase_orte_HEADERS += $(headers)
endif
include base/Makefile.am
distclean-local:
rm -f base/static-components.h

Просмотреть файл

@ -16,34 +16,12 @@
# $HEADER$
#
headers += \
base/base.h
noinst_LTLIBRARIES = libmca_rmaps_base.la
# Source code files
headers = \
base.h
# Library
libmca_rmaps_base_la_SOURCES = \
$(headers) \
rmaps_base_close.c \
rmaps_base_map.h \
rmaps_base_map.c \
rmaps_base_open.c \
rmaps_base_select.c
# Conditionally install the header files
if WANT_INSTALL_HEADERS
ortedir = $(includedir)/openmpi/orte/mca/rmaps/base
orte_HEADERS = $(headers)
else
ortedir = $(includedir)
endif
distclean-local:
rm -f static-components.h
libmca_rmaps_la_SOURCES += \
base/rmaps_base_close.c \
base/rmaps_base_map.h \
base/rmaps_base_map.c \
base/rmaps_base_open.c \
base/rmaps_base_select.c

Просмотреть файл

@ -16,19 +16,24 @@
# $HEADER$
#
SUBDIRS = base
# main library setup
noinst_LTLIBRARIES = libmca_rmgr.la
libmca_rmgr_la_SOURCES =
# Source code files
# header setup
nobase_orte_HEADERS = $(headers)
ortedir = $(includedir)/openmpi/orte/mca/rmgr
headers = \
rmgr_types.h \
rmgr.h
# local files
headers = rmgr.h rmgr_types.h
libmca_rmgr_la_SOURCES += $(headers)
# Conditionally install the header files
if WANT_INSTALL_HEADERS
ortedir = $(includedir)/openmpi/orte/mca/rmgr
orte_HEADERS = $(headers)
else
ortedir = $(includedir)
nobase_orte_HEADERS += $(headers)
endif
include base/Makefile.am
distclean-local:
rm -f base/static-components.h

Просмотреть файл

@ -16,39 +16,17 @@
# $HEADER$
#
headers += \
base/base.h
noinst_LTLIBRARIES = libmca_rmgr_base.la
# Source code files
headers = \
base.h
# Library
libmca_rmgr_base_la_SOURCES = \
$(headers) \
rmgr_base_context.c \
rmgr_base_close.c \
rmgr_base_open.c \
rmgr_base_pack.c \
rmgr_base_unpack.c \
rmgr_base_select.c \
rmgr_base_stage_gate.c \
rmgr_base_stubs.c \
data_type_support/rmgr_data_type_packing_fns.c \
data_type_support/rmgr_data_type_unpacking_fns.c
# Conditionally install the header files
if WANT_INSTALL_HEADERS
ortedir = $(includedir)/openmpi/orte/mca/rmgr/base
orte_HEADERS = $(headers)
else
ortedir = $(includedir)
endif
distclean-local:
rm -f static-components.h
libmca_rmgr_la_SOURCES += \
base/rmgr_base_context.c \
base/rmgr_base_close.c \
base/rmgr_base_open.c \
base/rmgr_base_pack.c \
base/rmgr_base_unpack.c \
base/rmgr_base_select.c \
base/rmgr_base_stage_gate.c \
base/rmgr_base_stubs.c \
base/data_type_support/rmgr_data_type_packing_fns.c \
base/data_type_support/rmgr_data_type_unpacking_fns.c

Просмотреть файл

@ -16,18 +16,24 @@
# $HEADER$
#
SUBDIRS = base
# main library setup
noinst_LTLIBRARIES = libmca_rml.la
libmca_rml_la_SOURCES =
# Source code files
# header setup
nobase_orte_HEADERS = $(headers)
ortedir = $(includedir)/openmpi/orte/mca/rml
headers = rml.h \
rml_types.h
# local files
headers = rml.h rml_types.h
libmca_rml_la_SOURCES += $(headers)
# Conditionally install the header files
if WANT_INSTALL_HEADERS
ortedir = $(includedir)/openmpi/orte/mca/rml
orte_HEADERS = $(headers)
else
ortedir = $(includedir)
nobase_orte_HEADERS += $(headers)
endif
include base/Makefile.am
distclean-local:
rm -f base/static-components.h

Просмотреть файл

@ -16,30 +16,10 @@
# $HEADER$
#
headers += \
base/base.h
AM_CPPFLAGS = $(OPAL_LTDL_CPPFLAGS)
noinst_LTLIBRARIES = libmca_rml_base.la
# Source code files
headers = \
base.h
libmca_rml_base_la_SOURCES = \
$(headers) \
rml_base_open.c \
rml_base_close.c \
rml_base_select.c
# Conditionally install the header files
if WANT_INSTALL_HEADERS
ortedir = $(includedir)/openmpi/orte/mca/rml/base
orte_HEADERS = $(headers)
else
ortedir = $(includedir)
endif
distclean-local:
rm -f static-components.h
libmca_rml_la_SOURCES += \
base/rml_base_open.c \
base/rml_base_close.c \
base/rml_base_select.c

Просмотреть файл

@ -16,18 +16,24 @@
# $HEADER$
#
SUBDIRS = base
# main library setup
noinst_LTLIBRARIES = libmca_schema.la
libmca_schema_la_SOURCES =
# Source code files
# header setup
nobase_orte_HEADERS = $(headers)
ortedir = $(includedir)/openmpi/orte/mca/schema
headers = schema.h \
schema_types.h
# local files
headers = schema.h schema_types.h
libmca_schema_la_SOURCES += $(headers)
# Conditionally install the header files
if WANT_INSTALL_HEADERS
ortedir = $(includedir)/openmpi/orte/mca/schema
orte_HEADERS = $(headers)
else
ortedir = $(includedir)
nobase_orte_HEADERS += $(headers)
endif
include base/Makefile.am
distclean-local:
rm -f base/static-components.h

Просмотреть файл

@ -16,29 +16,11 @@
# $HEADER$
#
headers += \
base/base.h
noinst_LTLIBRARIES = libmca_schema_base.la
# Source code files
headers = \
base.h
libmca_schema_base_la_SOURCES = \
$(headers) \
schema_base_open.c \
schema_base_close.c \
schema_base_select.c \
schema_base_fns.c
# Conditionally install the header files
if WANT_INSTALL_HEADERS
ortedir = $(includedir)/openmpi/orte/mca/schema/base
orte_HEADERS = $(headers)
else
ortedir = $(includedir)
endif
distclean-local:
rm -f static-components.h
libmca_schema_la_SOURCES += \
base/schema_base_open.c \
base/schema_base_close.c \
base/schema_base_select.c \
base/schema_base_fns.c

Просмотреть файл

@ -16,17 +16,24 @@
# $HEADER$
#
SUBDIRS = base
# main library setup
noinst_LTLIBRARIES = libmca_sds.la
libmca_sds_la_SOURCES =
# Source code files
# header setup
nobase_orte_HEADERS = $(headers)
ortedir = $(includedir)/openmpi/orte/mca/sds
# local files
headers = sds.h
libmca_sds_la_SOURCES += $(headers)
# Conditionally install the header files
if WANT_INSTALL_HEADERS
ortedir = $(includedir)/openmpi/orte/mca/sds
orte_HEADERS = $(headers)
else
ortedir = $(includedir)
nobase_orte_HEADERS += $(headers)
endif
include base/Makefile.am
distclean-local:
rm -f base/static-components.h

Просмотреть файл

@ -16,32 +16,13 @@
# $HEADER$
#
headers += \
base/base.h
AM_CPPFLAGS = $(OPAL_LTDL_CPPFLAGS)
noinst_LTLIBRARIES = libmca_sds_base.la
# Source code files
headers = \
base.h
libmca_sds_base_la_SOURCES = \
$(headers) \
sds_base_close.c \
sds_base_open.c \
sds_base_select.c \
sds_base_interface.c \
sds_base_universe.c \
sds_base_put.c
# Conditionally install the header files
if WANT_INSTALL_HEADERS
ortedir = $(includedir)/openmpi/orte/mca/sds/base
orte_HEADERS = $(headers)
else
ortedir = $(includedir)
endif
distclean-local:
rm -f static-components.h
libmca_sds_la_SOURCES += \
base/sds_base_close.c \
base/sds_base_open.c \
base/sds_base_select.c \
base/sds_base_interface.c \
base/sds_base_universe.c \
base/sds_base_put.c

Просмотреть файл

@ -16,18 +16,24 @@
# $HEADER$
#
SUBDIRS = base
# main library setup
noinst_LTLIBRARIES = libmca_soh.la
libmca_soh_la_SOURCES =
# Source code files
# header setup
nobase_orte_HEADERS = $(headers)
ortedir = $(includedir)/openmpi/orte/mca/soh
headers = soh.h \
soh_types.h
# local files
headers = soh.h soh_types.h
libmca_soh_la_SOURCES += $(headers)
# Conditionally install the header files
if WANT_INSTALL_HEADERS
ortedir = $(includedir)/openmpi/orte/mca/soh
orte_HEADERS = $(headers)
else
ortedir = $(includedir)
nobase_orte_HEADERS += $(headers)
endif
include base/Makefile.am
distclean-local:
rm -f base/static-components.h

Просмотреть файл

@ -16,39 +16,17 @@
# $HEADER$
#
headers += \
base/base.h
noinst_LTLIBRARIES = libmca_soh_base.la
# Source code files
headers = \
base.h
# Library
libmca_soh_base_la_SOURCES = \
$(headers) \
soh_base_close.c \
soh_base_select.c \
soh_base_local_functions.c \
soh_base_get_proc_soh.c \
soh_base_set_proc_soh.c \
soh_base_get_job_soh.c \
soh_base_set_job_soh.c \
soh_base_open.c \
data_type_support/soh_data_type_packing_fns.c \
data_type_support/soh_data_type_unpacking_fns.c
# Conditionally install the header files
if WANT_INSTALL_HEADERS
ortedir = $(includedir)/openmpi/orte/mca/soh/base
orte_HEADERS = $(headers)
else
ortedir = $(includedir)
endif
distclean-local:
rm -f static-components.h
libmca_soh_la_SOURCES += \
base/soh_base_close.c \
base/soh_base_select.c \
base/soh_base_local_functions.c \
base/soh_base_get_proc_soh.c \
base/soh_base_set_proc_soh.c \
base/soh_base_get_job_soh.c \
base/soh_base_set_job_soh.c \
base/soh_base_open.c \
base/data_type_support/soh_data_type_packing_fns.c \
base/data_type_support/soh_data_type_unpacking_fns.c