2004-10-23 23:49:29 +04:00
|
|
|
#
|
2004-11-22 04:38:40 +03:00
|
|
|
# Copyright (c) 2004-2005 The Trustees of Indiana University.
|
|
|
|
# All rights reserved.
|
|
|
|
# Copyright (c) 2004-2005 The Trustees of the University of Tennessee.
|
|
|
|
# All rights reserved.
|
2004-11-28 23:09:25 +03:00
|
|
|
# Copyright (c) 2004-2005 High Performance Computing Center Stuttgart,
|
|
|
|
# University of Stuttgart. All rights reserved.
|
2005-03-24 15:43:37 +03:00
|
|
|
# Copyright (c) 2004-2005 The Regents of the University of California.
|
|
|
|
# All rights reserved.
|
2004-11-22 04:38:40 +03:00
|
|
|
# $COPYRIGHT$
|
|
|
|
#
|
|
|
|
# Additional copyrights may follow
|
|
|
|
#
|
2004-10-23 23:49:29 +04:00
|
|
|
# $HEADER$
|
|
|
|
#
|
|
|
|
|
|
|
|
# Use the top-level Makefile.options
|
|
|
|
|
2005-09-07 09:54:53 +04:00
|
|
|
|
2004-10-23 23:49:29 +04:00
|
|
|
|
2005-07-28 03:39:56 +04:00
|
|
|
AM_CPPFLAGS = $(ptl_mx_CPPFLAGS)
|
|
|
|
|
2004-10-23 23:49:29 +04: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).
|
|
|
|
|
|
|
|
if OMPI_BUILD_ptl_mx_DSO
|
|
|
|
component_noinst =
|
|
|
|
component_install = mca_ptl_mx.la
|
|
|
|
else
|
|
|
|
component_noinst = libmca_ptl_mx.la
|
|
|
|
component_install =
|
|
|
|
endif
|
|
|
|
|
2005-07-28 03:39:56 +04:00
|
|
|
ptl_mx_SOURCES = ptl_mx.c ptl_mx.h ptl_mx_component.c ptl_mx_module.c ptl_mx_module.h \
|
2005-07-06 20:37:48 +04:00
|
|
|
ptl_mx_peer.c ptl_mx_peer.h ptl_mx_proc.c ptl_mx_proc.h \
|
|
|
|
ptl_mx_recvfrag.c ptl_mx_recvfrag.h ptl_mx_sendfrag.c ptl_mx_sendfrag.h
|
2004-10-23 23:49:29 +04:00
|
|
|
|
|
|
|
mcacomponentdir = $(libdir)/openmpi
|
|
|
|
mcacomponent_LTLIBRARIES = $(component_install)
|
2005-09-01 07:41:15 +04:00
|
|
|
mca_ptl_mx_la_SOURCES = $(ptl_mx_SOURCES)
|
2005-09-22 16:28:54 +04:00
|
|
|
mca_ptl_mx_la_LIBADD = \
|
|
|
|
$(ptl_mx_LIBS) \
|
|
|
|
$(top_ompi_builddir)/ompi/libmpi.la \
|
|
|
|
$(top_ompi_builddir)/orte/liborte.la \
|
|
|
|
$(top_ompi_builddir)/opal/libopal.la
|
2005-07-28 03:39:56 +04:00
|
|
|
mca_ptl_mx_la_LDFLAGS = -module -avoid-version $(ptl_mx_LDFLAGS)
|
2004-10-23 23:49:29 +04:00
|
|
|
|
|
|
|
noinst_LTLIBRARIES = $(component_noinst)
|
2005-07-28 03:39:56 +04:00
|
|
|
libmca_ptl_mx_la_SOURCES = $(ptl_mx_SOURCES)
|
|
|
|
libmca_ptl_mx_la_LIBADD = $(ptl_mx_LIBS)
|
|
|
|
libmca_ptl_mx_la_LDFLAGS = -module -avoid-version $(ptl_mx_LDFLAGS)
|