7406ef1241
install the common pmi library This commit was SVN r26588.
40 строки
1.3 KiB
Makefile
40 строки
1.3 KiB
Makefile
#
|
|
# Copyright (c) 2011 Cisco Systems, Inc. All rights reserved.
|
|
# Copyright (c) 2012 Sandia National Laboratories. 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)
|
|
|
|
# control whether building an installed library or a convenience
|
|
# (noinst) library
|
|
if MCA_BUILD_orte_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
|
|
libmca_common_pmi_la_LDFLAGS = -module -avoid-version $(common_pmi_LDFLAGS)
|
|
libmca_common_pmi_la_LIBADD = $(common_pmi_LIBS)
|