1
1
openmpi/ompi/mca/common/ofacm/Makefile.am
Jeff Squyres d9be19f011 Added shared library versions to those who were missing it.
The following common shared libraries did not have versioning:

 * ompi/common/ofacm
 * ompi/common/verbs
 * ompi/common/ugni

Additionally, we still had shared library versions in VERSION for the
following libraries, which no longer exist:

 * ompi/common/portals
 * opal/common/hwloc

This commit was SVN r29421.
2013-10-10 13:25:57 +00:00

79 строки
1.9 KiB
Makefile

#
# Copyright (c) 2009-2012 Mellanox Technologies. All rights reserved.
# Copyright (c) 2009 Cisco Systems, Inc. All rights reserved.
# Copyright (c) 2009-2012 Oak Ridge National Laboratory. All rights reserved.
# $COPYRIGHT$
#
# Additional copyrights may follow
#
# $HEADER$
#
AM_CPPFLAGS = $(common_ofacm_CPPFLAGS)
dist_pkgdata_DATA = \
help-mpi-common-ofacm-base.txt \
help-mpi-common-ofacm-oob.txt
headers = \
base.h \
common_ofacm_oob.h \
common_ofacm_empty.h \
connect.h
sources = \
common_ofacm_base.c \
common_ofacm_oob.c \
common_ofacm_empty.c
# If we have XRC support, build XOOB connection module
if MCA_common_ofacm_have_xrc
sources += \
common_ofacm_xoob.c \
common_ofacm_xoob.h
endif
# See ompi/mca/common/sm/Makefile.am for an explanation of the
# LTLIBRARIES values listed below.
lib_LTLIBRARIES =
noinst_LTLIBRARIES =
comp_inst = libmca_common_ofacm.la
comp_noinst = libmca_common_ofacm_noinst.la
if MCA_BUILD_ompi_common_ofacm_DSO
lib_LTLIBRARIES += $(comp_inst)
else
noinst_LTLIBRARIES += $(comp_noinst)
endif
libmca_common_ofacm_la_SOURCES = $(headers) $(sources)
libmca_common_ofacm_la_CPPFLAGS = $(common_ofacm_CPPFLAGS)
libmca_common_ofacm_la_LDFLAGS = \
-version-info $(libmca_common_ofacm_so_version) \
$(common_ofacm_LDFLAGS)
libmca_common_ofacm_la_LIBADD = $(common_ofacm_LIBS)
libmca_common_ofacm_noinst_la_SOURCES = $(libmca_common_ofacm_la_SOURCES)
# Conditionally install the header files
if WANT_INSTALL_HEADERS
ompidir = $(includedir)/openmpi/ompi/mca/common/ofacm
ompi_HEADERS = $(headers)
else
ompidir = $(includedir)
endif
# See ompi/mca/common/sm/Makefile.am for an explanation of the
# the *-local rules, below.
all-local:
if test -z "$(lib_LTLIBRARIES)"; then \
rm -f "$(comp_inst)"; \
$(LN_S) "$(comp_noinst)" "$(comp_inst)"; \
fi
clean-local:
if test -z "$(lib_LTLIBRARIES)"; then \
rm -f "$(comp_inst)"; \
fi