2005-06-27 23:24:04 +04:00
|
|
|
#
|
2005-11-05 22:57:48 +03: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.
|
2005-06-27 23:24:04 +04:00
|
|
|
# Copyright (c) 2004-2005 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$
|
|
|
|
#
|
|
|
|
# Additional copyrights may follow
|
|
|
|
#
|
|
|
|
# $HEADER$
|
|
|
|
#
|
|
|
|
|
|
|
|
# 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).
|
|
|
|
|
2005-06-30 09:50:55 +04:00
|
|
|
if OMPI_BUILD_btl_portals_DSO
|
2005-06-27 23:24:04 +04:00
|
|
|
component_noinst =
|
2005-06-30 09:50:55 +04:00
|
|
|
component_install = mca_btl_portals.la
|
2005-06-27 23:24:04 +04:00
|
|
|
else
|
2005-06-30 09:50:55 +04:00
|
|
|
component_noinst = libmca_btl_portals.la
|
2005-06-27 23:24:04 +04:00
|
|
|
component_install =
|
|
|
|
endif
|
|
|
|
|
|
|
|
portals_SOURCES = \
|
2005-08-12 18:33:45 +04:00
|
|
|
btl_portals.h \
|
|
|
|
btl_portals_endpoint.h \
|
|
|
|
btl_portals_frag.h \
|
|
|
|
btl_portals_send.h \
|
|
|
|
btl_portals_recv.h \
|
|
|
|
btl_portals.c \
|
|
|
|
btl_portals_component.c \
|
|
|
|
btl_portals_frag.c \
|
|
|
|
btl_portals_send.c \
|
|
|
|
btl_portals_recv.c \
|
|
|
|
btl_portals_rdma.c
|
2005-06-27 23:24:04 +04:00
|
|
|
|
2005-08-12 18:33:45 +04:00
|
|
|
AM_CPPFLAGS = $(btl_portals_CPPFLAGS)
|
2005-06-27 23:24:04 +04:00
|
|
|
|
2007-04-12 15:19:42 +04:00
|
|
|
mcacomponentdir = $(pkglibdir)
|
2005-06-27 23:24:04 +04:00
|
|
|
mcacomponent_LTLIBRARIES = $(component_install)
|
2005-06-30 09:50:55 +04:00
|
|
|
mca_btl_portals_la_SOURCES = $(portals_SOURCES)
|
2005-07-14 08:11:59 +04:00
|
|
|
nodist_mca_btl_portals_la_SOURCES = $(portals_nodist_SOURCES)
|
2005-09-22 16:28:54 +04:00
|
|
|
mca_btl_portals_la_LIBADD = \
|
|
|
|
$(btl_portals_LIBS) \
|
2007-12-15 16:32:02 +03:00
|
|
|
$(top_ompi_builddir)/ompi/mca/common/portals/libmca_common_portals.la
|
2005-07-09 22:52:53 +04:00
|
|
|
mca_btl_portals_la_LDFLAGS = -module -avoid-version $(btl_portals_LDFLAGS)
|
2005-06-27 23:24:04 +04:00
|
|
|
|
|
|
|
noinst_LTLIBRARIES = $(component_noinst)
|
2005-06-30 09:50:55 +04:00
|
|
|
libmca_btl_portals_la_SOURCES = $(portals_SOURCES)
|
2005-07-14 08:11:59 +04:00
|
|
|
nodist_libmca_btl_portals_la_SOURCES = $(portals_nodist_SOURCES)
|
2005-07-09 22:52:53 +04:00
|
|
|
libmca_btl_portals_la_LIBADD = $(btl_portals_LIBS)
|
|
|
|
libmca_btl_portals_la_LDFLAGS = -module -avoid-version $(btl_portals_LDFLAGS)
|