f7664b3814
ofacm - generic connection manager for IB interconnects. ofautils - IB common utilities and compatibility code 2. Updating OpenIB configure code - ORNL & Mellanox Teams This commit was SVN r26707.
77 строки
1.8 KiB
Makefile
77 строки
1.8 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 = $(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
|