
Since the MPIR symbols are now included in the ORTE library, remove duplicate declarations in OMPI and replace them with extern references to their ORTE instantiations. This commit was SVN r23360.
35 строки
854 B
Makefile
35 строки
854 B
Makefile
#
|
|
# Copyright (c) 2010 Cisco Systems, Inc. All rights reserved.
|
|
# $COPYRIGHT$
|
|
#
|
|
# Additional copyrights may follow
|
|
#
|
|
# $HEADER$
|
|
#
|
|
|
|
sources = \
|
|
mpirx.h \
|
|
mpirx.c \
|
|
mpirx_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_debugger_mpirx_DSO
|
|
component_noinst =
|
|
component_install = mca_debugger_mpirx.la
|
|
else
|
|
component_noinst = libmca_debugger_mpirx.la
|
|
component_install =
|
|
endif
|
|
|
|
mcacomponentdir = $(pkglibdir)
|
|
mcacomponent_LTLIBRARIES = $(component_install)
|
|
mca_debugger_mpirx_la_SOURCES = $(sources)
|
|
mca_debugger_mpirx_la_LDFLAGS = -module -avoid-version
|
|
|
|
noinst_LTLIBRARIES = $(component_noinst)
|
|
libmca_debugger_mpirx_la_SOURCES =$(sources)
|
|
libmca_debugger_mpirx_la_LDFLAGS = -module -avoid-version
|