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.
41 строка
1.1 KiB
Makefile
41 строка
1.1 KiB
Makefile
#
|
|
# Copyright (c) 2011 Cisco Systems, Inc. All rights reserved.
|
|
# $COPYRIGHT$
|
|
#
|
|
# Additional copyrights may follow
|
|
#
|
|
# $HEADER$
|
|
#
|
|
|
|
AM_CPPFLAGS = $(pubsub_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_pubsub_pmi_DSO
|
|
component_noinst =
|
|
component_install = mca_pubsub_pmi.la
|
|
else
|
|
component_noinst = libmca_pubsub_pmi.la
|
|
component_install =
|
|
endif
|
|
|
|
local_sources = \
|
|
pubsub_pmi.c \
|
|
pubsub_pmi.h \
|
|
pubsub_pmi_component.c
|
|
|
|
mcacomponentdir = $(ompilibdir)
|
|
mcacomponent_LTLIBRARIES = $(component_install)
|
|
mca_pubsub_pmi_la_SOURCES = $(local_sources)
|
|
mca_pubsub_pmi_la_LDFLAGS = -module -avoid-version $(pubsub_pmi_LDFLAGS)
|
|
mca_pubsub_pmi_la_LIBADD = $(pubsub_pmi_LIBS) \
|
|
$(OMPI_TOP_BUILDDIR)/opal/mca/common/pmi/libmca_common_pmi.la
|
|
|
|
noinst_LTLIBRARIES = $(component_noinst)
|
|
libmca_pubsub_pmi_la_SOURCES = $(local_sources)
|
|
libmca_pubsub_pmi_la_LIBADD = $(pubsub_pmi_LIBS)
|
|
libmca_pubsub_pmi_la_LDFLAGS = -module -avoid-version $(pubsub_pmi_LDFLAGS)
|
|
|