a8e2d6c3a6
top_ompi_srcdir -> OMPI_TOP_SRCDIR top_ompi_builddir -> OMPI_TOP_BUILDDIR We also split the srcdir/builddir flags according to their local tree (e.g., OPAL_TOP_SRCDIR), and tied them all together in configure.ac. Renamed ompi_ignore and ompi_unignore to be opal_<foo> as these are agnostic markers. Only thing left is ompilibdir being treated similar to what we dif for srcdir/builddir. Coming soon. This commit was SVN r31678.
46 строки
1.1 KiB
Makefile
46 строки
1.1 KiB
Makefile
#
|
|
# Copyright (c) 2011 Cisco Systems, Inc. All rights reserved.
|
|
# $COPYRIGHT$
|
|
#
|
|
# Additional copyrights may follow
|
|
#
|
|
# $HEADER$
|
|
#
|
|
|
|
AM_CPPFLAGS = $(rte_pmi_CPPFLAGS)
|
|
|
|
# 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_ompi_rte_pmi_DSO
|
|
component_noinst =
|
|
component_install = mca_rte_pmi.la
|
|
else
|
|
component_noinst = libmca_rte_pmi.la
|
|
component_install =
|
|
endif
|
|
|
|
local_sources = \
|
|
rte_pmi.h \
|
|
rte_pmi_internal.h \
|
|
rte_pmi_coll.c \
|
|
rte_pmi_component.c \
|
|
rte_pmi_name.c \
|
|
rte_pmi_error.c \
|
|
rte_pmi_db.c \
|
|
rte_pmi_comm.c
|
|
|
|
mcacomponentdir = $(ompilibdir)
|
|
mcacomponent_LTLIBRARIES = $(component_install)
|
|
mca_rte_pmi_la_SOURCES = $(local_sources)
|
|
mca_rte_pmi_la_LDFLAGS = -module -avoid-version $(rte_pmi_LDFLAGS)
|
|
mca_rte_pmi_la_LIBADD = $(rte_pmi_LIBS) \
|
|
$(OMPI_TOP_BUILDDIR)/orte/mca/common/pmi/libmca_common_pmi.la
|
|
|
|
noinst_LTLIBRARIES = $(component_noinst)
|
|
libmca_rte_pmi_la_SOURCES = $(local_sources)
|
|
libmca_rte_pmi_la_LIBADD = $(rte_pmi_LIBS)
|
|
libmca_rte_pmi_la_LDFLAGS = -module -avoid-version $(rte_pmi_LDFLAGS)
|
|
|