b2f77bf08f
Fix the state machine to support multiple jobs being simultaneously launched as this is not only required for mapreduce, but can happen under comm-spawn applications as well. This commit was SVN r26380.
41 строка
1.0 KiB
Makefile
41 строка
1.0 KiB
Makefile
#
|
|
# Copyright (c) 2012 Los Alamos National Security, LLC.
|
|
# All rights reserved.
|
|
# $COPYRIGHT$
|
|
#
|
|
# Additional copyrights may follow
|
|
#
|
|
# $HEADER$
|
|
#
|
|
|
|
EXTRA_DIST = .windows
|
|
|
|
# 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 MCA_BUILD_orte_iof_mr_orted_DSO
|
|
component_noinst =
|
|
component_install = mca_iof_mr_orted.la
|
|
else
|
|
component_noinst = libmca_iof_mr_orted.la
|
|
component_install =
|
|
endif
|
|
|
|
mr_orted_SOURCES = \
|
|
iof_mrorted.c \
|
|
iof_mrorted.h \
|
|
iof_mrorted_component.c \
|
|
iof_mrorted_read.c \
|
|
iof_mrorted_receive.c
|
|
|
|
mcacomponentdir = $(pkglibdir)
|
|
mcacomponent_LTLIBRARIES = $(component_install)
|
|
mca_iof_mr_orted_la_SOURCES = $(mr_orted_SOURCES)
|
|
mca_iof_mr_orted_la_LDFLAGS = -module -avoid-version
|
|
|
|
noinst_LTLIBRARIES = $(component_noinst)
|
|
libmca_iof_mr_orted_la_SOURCES = $(mr_orted_SOURCES)
|
|
libmca_iof_mr_orted_la_LIBADD =
|
|
libmca_iof_mr_orted_la_LDFLAGS = -module -avoid-version
|