2004-01-14 15:15:17 +00:00
|
|
|
#
|
2004-11-22 01:38:40 +00: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 20:09:25 +00:00
|
|
|
# Copyright (c) 2004-2005 High Performance Computing Center Stuttgart,
|
|
|
|
# University of Stuttgart. All rights reserved.
|
2005-03-24 12:43:37 +00:00
|
|
|
# Copyright (c) 2004-2005 The Regents of the University of California.
|
|
|
|
# All rights reserved.
|
2004-11-22 01:38:40 +00:00
|
|
|
# $COPYRIGHT$
|
|
|
|
#
|
|
|
|
# Additional copyrights may follow
|
|
|
|
#
|
2004-01-14 15:15:17 +00:00
|
|
|
# $HEADER$
|
|
|
|
#
|
|
|
|
|
2004-07-01 16:25:44 +00:00
|
|
|
# Use the top-level Makefile.options
|
2004-01-14 15:15:17 +00:00
|
|
|
|
2005-09-07 05:54:53 +00:00
|
|
|
|
2004-01-14 15:15:17 +00:00
|
|
|
|
2005-05-23 22:06:50 +00:00
|
|
|
sources = \
|
|
|
|
ptl_tcp.c \
|
|
|
|
ptl_tcp.h \
|
|
|
|
ptl_tcp_addr.h \
|
|
|
|
ptl_tcp_component.c \
|
|
|
|
ptl_tcp_peer.c \
|
|
|
|
ptl_tcp_peer.h \
|
|
|
|
ptl_tcp_proc.c \
|
|
|
|
ptl_tcp_proc.h \
|
|
|
|
ptl_tcp_recvfrag.c \
|
|
|
|
ptl_tcp_recvfrag.h \
|
|
|
|
ptl_tcp_sendfrag.c \
|
|
|
|
ptl_tcp_sendfrag.h \
|
|
|
|
ptl_tcp_sendreq.c \
|
|
|
|
ptl_tcp_sendreq.h
|
2004-01-14 15:15:17 +00:00
|
|
|
|
2004-07-01 16:25:44 +00: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).
|
2004-01-14 15:15:17 +00:00
|
|
|
|
2004-07-01 16:25:44 +00:00
|
|
|
if OMPI_BUILD_ptl_tcp_DSO
|
2005-05-06 21:50:30 +00:00
|
|
|
lib =
|
|
|
|
lib_sources =
|
|
|
|
component = mca_ptl_tcp.la
|
|
|
|
component_sources = $(sources)
|
2004-01-14 15:15:17 +00:00
|
|
|
else
|
2005-05-06 21:50:30 +00:00
|
|
|
lib = libmca_ptl_tcp.la
|
|
|
|
lib_sources = $(sources)
|
|
|
|
component =
|
|
|
|
component_sources =
|
2004-01-14 15:15:17 +00:00
|
|
|
endif
|
|
|
|
|
2004-07-01 16:25:44 +00:00
|
|
|
mcacomponentdir = $(libdir)/openmpi
|
2005-05-06 21:50:30 +00:00
|
|
|
mcacomponent_LTLIBRARIES = $(component)
|
|
|
|
mca_ptl_tcp_la_SOURCES = $(component_sources)
|
2004-01-14 15:15:17 +00:00
|
|
|
mca_ptl_tcp_la_LDFLAGS = -module -avoid-version
|
|
|
|
|
2005-05-06 21:50:30 +00:00
|
|
|
noinst_LTLIBRARIES = $(lib)
|
|
|
|
libmca_ptl_tcp_la_SOURCES = $(lib_sources)
|
2004-03-17 19:43:41 +00:00
|
|
|
libmca_ptl_tcp_la_LDFLAGS = -module -avoid-version
|
2005-05-23 22:06:50 +00:00
|
|
|
|