2016-03-18 18:50:24 -07:00
|
|
|
#
|
|
|
|
# Copyright (c) 2004-2005 The Trustees of Indiana University and Indiana
|
|
|
|
# University Research and Technology
|
|
|
|
# Corporation. All rights reserved.
|
|
|
|
# Copyright (c) 2004-2005 The University of Tennessee and The University
|
|
|
|
# of Tennessee Research Foundation. All rights
|
|
|
|
# reserved.
|
|
|
|
# Copyright (c) 2004-2009 High Performance Computing Center Stuttgart,
|
|
|
|
# University of Stuttgart. All rights reserved.
|
|
|
|
# Copyright (c) 2004-2005 The Regents of the University of California.
|
|
|
|
# All rights reserved.
|
|
|
|
# Copyright (c) 2010 Cisco Systems, Inc. All rights reserved.
|
2017-02-25 07:40:03 -08:00
|
|
|
# Copyright (c) 2015-2017 Intel, Inc. All rights reserved.
|
2017-04-08 14:06:57 -06:00
|
|
|
# Copyright (c) 2017 Los Alamos National Security, LLC. All rights
|
|
|
|
# reserved.
|
2017-08-22 17:28:23 -04:00
|
|
|
# Copyright (c) 2017 IBM Corporation. All rights reserved.
|
2016-03-18 18:50:24 -07:00
|
|
|
# $COPYRIGHT$
|
|
|
|
#
|
|
|
|
# Additional copyrights may follow
|
|
|
|
#
|
|
|
|
# $HEADER$
|
|
|
|
#
|
|
|
|
|
2017-04-08 14:06:57 -06:00
|
|
|
AM_CPPFLAGS = $(opal_common_ofi_CPPFLAGS)
|
2017-02-25 07:40:03 -08:00
|
|
|
|
2016-03-18 18:50:24 -07:00
|
|
|
sources = \
|
2016-09-28 13:25:55 -07:00
|
|
|
rml_ofi.h \
|
|
|
|
rml_ofi_request.h \
|
|
|
|
rml_ofi_component.c \
|
|
|
|
rml_ofi_send.c
|
2016-03-18 18:50:24 -07:00
|
|
|
|
|
|
|
# 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).
|
|
|
|
|
2016-09-28 13:25:55 -07:00
|
|
|
if MCA_BUILD_orte_rml_ofi_DSO
|
2016-03-18 18:50:24 -07:00
|
|
|
component_noinst =
|
2016-09-28 13:25:55 -07:00
|
|
|
component_install = mca_rml_ofi.la
|
2016-03-18 18:50:24 -07:00
|
|
|
else
|
2016-09-28 13:25:55 -07:00
|
|
|
component_noinst = libmca_rml_ofi.la
|
2016-03-18 18:50:24 -07:00
|
|
|
component_install =
|
|
|
|
endif
|
|
|
|
|
|
|
|
mcacomponentdir = $(ortelibdir)
|
|
|
|
mcacomponent_LTLIBRARIES = $(component_install)
|
2016-09-28 13:25:55 -07:00
|
|
|
mca_rml_ofi_la_SOURCES = $(sources)
|
2017-02-25 07:40:03 -08:00
|
|
|
mca_rml_ofi_la_LDFLAGS = -module -avoid-version
|
2017-08-22 17:28:23 -04:00
|
|
|
mca_rml_ofi_la_LIBADD = $(top_builddir)/orte/lib@ORTE_LIB_PREFIX@open-rte.la \
|
|
|
|
$(OPAL_TOP_BUILDDIR)/opal/mca/common/ofi/lib@OPAL_LIB_PREFIX@mca_common_ofi.la
|
2016-03-18 18:50:24 -07:00
|
|
|
|
|
|
|
noinst_LTLIBRARIES = $(component_noinst)
|
2016-09-28 13:25:55 -07:00
|
|
|
libmca_rml_ofi_la_SOURCES = $(sources)
|
2017-02-25 07:40:03 -08:00
|
|
|
libmca_rml_ofi_la_LDFLAGS = -module -avoid-version
|