39a6057fc6
* General TCP cleanup for OPAL / ORTE * Simplifying the OOB by moving much of the logic into the RML * Allowing the OOB RML component to do routing of messages * Adding a component framework for handling routing tables * Moving the xcast functionality from the OOB base to its own framework Includes merge from tmp/bwb-oob-rml-merge revisions: r15506, r15507, r15508, r15510, r15511, r15512, r15513 This commit was SVN r15528. The following SVN revisions from the original message are invalid or inconsistent and therefore were not cross-referenced: r15506 r15507 r15508 r15510 r15511 r15512 r15513
40 строки
1015 B
Makefile
40 строки
1015 B
Makefile
#
|
|
# Copyright (c) 2007 Los Alamos National Security, LLC.
|
|
# All rights reserved.
|
|
# $COPYRIGHT$
|
|
#
|
|
# Additional copyrights may follow
|
|
#
|
|
# $HEADER$
|
|
#
|
|
|
|
sources = \
|
|
routed_unity.h \
|
|
routed_unity_component.c
|
|
|
|
# Make the output library in this directory, and name it either
|
|
# mca_<type>_<name>.la (for DSO builds) or libmca_<type>_<name>.la
|
|
# (for static builds).
|
|
|
|
if OMPI_BUILD_routed_unity_DSO
|
|
component_noinst =
|
|
component_install = mca_routed_unity.la
|
|
else
|
|
component_noinst = libmca_routed_unity.la
|
|
component_install =
|
|
endif
|
|
|
|
mcacomponentdir = $(pkglibdir)
|
|
mcacomponent_LTLIBRARIES = $(component_install)
|
|
mca_routed_unity_la_SOURCES = $(sources)
|
|
mca_routed_unity_la_LIBADD = \
|
|
$(LIBOMPI_LA) \
|
|
$(top_ompi_builddir)/orte/libopen-rte.la \
|
|
$(top_ompi_builddir)/opal/libopen-pal.la
|
|
mca_routed_unity_la_LDFLAGS = -module -avoid-version
|
|
|
|
noinst_LTLIBRARIES = $(component_noinst)
|
|
libmca_routed_unity_la_SOURCES = $(sources)
|
|
libmca_routed_unity_la_LDFLAGS = -module -avoid-version
|
|
|