2012-08-16 23:11:35 +04:00
|
|
|
#
|
|
|
|
# Copyright (c) 2009-2012 Oak Ridge National Laboratory. All rights reserved.
|
|
|
|
# Copyright (c) 2009-2012 Mellanox Technologies. All rights reserved.
|
2012-09-01 05:42:37 +04:00
|
|
|
# Copyright (c) 2012 Cisco Systems, Inc. All rights reserved.
|
2012-08-16 23:11:35 +04:00
|
|
|
# $COPYRIGHT$
|
|
|
|
#
|
|
|
|
# Additional copyrights may follow
|
|
|
|
#
|
|
|
|
# $HEADER$
|
|
|
|
#
|
|
|
|
|
|
|
|
AM_CPPFLAGS = $(sbgp_ibnet_CPPFLAGS) $(btl_openib_CPPFLAGS)
|
|
|
|
|
|
|
|
not_used_yet =
|
|
|
|
|
|
|
|
sources = \
|
|
|
|
sbgp_ibnet.h \
|
|
|
|
sbgp_ibnet_mca.h \
|
|
|
|
sbgp_ibnet_mca.c \
|
|
|
|
sbgp_ibnet_component.c \
|
|
|
|
sbgp_ibnet_module.c
|
|
|
|
|
|
|
|
|
|
|
|
# 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).
|
|
|
|
|
|
|
|
component_noinst =
|
|
|
|
component_install =
|
|
|
|
if MCA_BUILD_ompi_sbgp_ibnet_DSO
|
|
|
|
component_install += mca_sbgp_ibnet.la
|
|
|
|
else
|
|
|
|
component_noinst += libmca_sbgp_ibnet.la
|
|
|
|
endif
|
|
|
|
|
|
|
|
# See ompi/mca/btl/sm/Makefile.am for an explanation of
|
|
|
|
# libmca_common_sm.la.
|
|
|
|
|
2014-01-08 02:11:15 +04:00
|
|
|
mcacomponentdir = $(ompilibdir)
|
2012-08-16 23:11:35 +04:00
|
|
|
mcacomponent_LTLIBRARIES = $(component_install)
|
|
|
|
mca_sbgp_ibnet_la_SOURCES = $(sources)
|
|
|
|
mca_sbgp_ibnet_la_LDFLAGS = -module -avoid-version $(sbgp_ibnet_LDFLAGS) $(btl_openib_LDFLAGS)
|
|
|
|
mca_sbgp_ibnet_la_LIBADD = $(sbgp_ibnet_LIBS) $(btl_openib_LIBS) \
|
2012-09-01 05:42:37 +04:00
|
|
|
$(top_ompi_builddir)/ompi/mca/common/verbs/libmca_common_verbs.la \
|
|
|
|
$(top_ompi_builddir)/ompi/mca/common/ofacm/libmca_common_ofacm.la
|
2013-02-12 21:45:27 +04:00
|
|
|
|
2012-08-16 23:11:35 +04:00
|
|
|
noinst_LTLIBRARIES = $(component_noinst)
|
|
|
|
libmca_sbgp_ibnet_la_SOURCES =$(sources)
|
|
|
|
libmca_sbgp_ibnet_la_LDFLAGS = -module -avoid-version
|
|
|
|
|
|
|
|
$(top_ompi_builddir)/ompi/mca/common/ofacm/libmca_common_ofacm.la: foo.c
|
|
|
|
cd $(top_ompi_builddir)/ompi/mca/common/ofacm && $(MAKE)
|
|
|
|
|
|
|
|
$(top_ompi_builddir)/ompi/mca/common/ofautils/libmca_common_ofautils.la: foo.c
|
|
|
|
cd $(top_ompi_builddir)/ompi/mca/common/ofautils && $(MAKE)
|
|
|
|
|
|
|
|
foo.c:
|