1
1
openmpi/opal/mca/common/pmi/Makefile.am
Ralph Castain 1107f9099e Per the RFC issued here:
http://www.open-mpi.org/community/lists/devel/2014/05/14827.php

Refactor PMI support

This commit was SVN r31907.
2014-06-01 04:28:17 +00:00

48 строки
1.6 KiB
Makefile

#
# Copyright (c) 2011 Cisco Systems, Inc. All rights reserved.
# Copyright (c) 2012 Sandia National Laboratories. All rights reserved.
# Copyright (c) 2013 Los Alamos National Security, LLC. All rights
# reserved.
# $COPYRIGHT$
#
# Additional copyrights may follow
#
# $HEADER$
#
# This library is shared among all the consumers of PMI to provide a
# single point for initializing and shutting down PMI.
#
# This is not a component in the traditional sense. It is a library
# (either rolled into libmpi if the components are rolled into libmpi
# or a stand-alone library). Users of this "component" must
# explicitly link against libmca_common_pmi.la when building
# stand-alone libraries (it won't hurt to do so in all cases).
#
# Note that building this common component statically and linking
# against other dynamic components is *not* supported!
AM_CPPFLAGS = $(common_pmi_CPPFLAGS)
dist_opaldata_DATA = help-common-pmi.txt
# control whether building an installed library or a convenience
# (noinst) library
if MCA_BUILD_opal_common_pmi_DSO
component_noinst =
component_install = libmca_common_pmi.la
else
component_noinst = libmca_common_pmi.la
component_install =
endif
lib_LTLIBRARIES = $(component_install)
noinst_LTLIBRARIES = $(component_noinst)
libmca_common_pmi_la_SOURCES = common_pmi.h common_pmi.c
if WANT_PMI2_SUPPORT
libmca_common_pmi_la_SOURCES += pmi2_pmap_parser.c
endif
libmca_common_pmi_la_LDFLAGS = $(common_pmi_LDFLAGS) -version-info $(libmca_opal_common_pmi_so_version)
libmca_common_pmi_la_LIBADD = $(common_pmi_LIBS)