2004-07-07 16:51:39 +00:00
|
|
|
#
|
2005-11-05 19:57:48 +00: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.
|
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-07-07 16:51:39 +00:00
|
|
|
# $HEADER$
|
|
|
|
#
|
|
|
|
|
|
|
|
# Use the top-level Makefile.options
|
|
|
|
|
2005-09-07 05:54:53 +00:00
|
|
|
|
2004-07-07 16:51:39 +00:00
|
|
|
|
|
|
|
sources = \
|
2004-09-02 06:02:09 +00:00
|
|
|
oob_tcp.c \
|
2004-07-13 21:03:03 +00:00
|
|
|
oob_tcp.h \
|
2004-08-03 00:50:14 +00:00
|
|
|
oob_tcp_hdr.h \
|
2004-09-02 18:55:22 +00:00
|
|
|
oob_tcp_addr.h \
|
2004-09-02 14:45:01 +00:00
|
|
|
oob_tcp_addr.c \
|
2004-09-02 06:02:09 +00:00
|
|
|
oob_tcp_msg.c \
|
2004-07-13 21:03:03 +00:00
|
|
|
oob_tcp_msg.h \
|
2004-09-02 06:02:09 +00:00
|
|
|
oob_tcp_peer.c \
|
2004-09-08 17:02:24 +00:00
|
|
|
oob_tcp_ping.c \
|
2004-07-13 21:03:03 +00:00
|
|
|
oob_tcp_peer.h \
|
2004-09-02 06:02:09 +00:00
|
|
|
oob_tcp_recv.c \
|
|
|
|
oob_tcp_send.c
|
2004-07-07 16:51:39 +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).
|
|
|
|
|
|
|
|
if OMPI_BUILD_oob_tcp_DSO
|
|
|
|
component_noinst =
|
|
|
|
component_install = mca_oob_tcp.la
|
|
|
|
else
|
|
|
|
component_noinst = libmca_oob_tcp.la
|
|
|
|
component_install =
|
|
|
|
endif
|
|
|
|
|
|
|
|
mcacomponentdir = $(libdir)/openmpi
|
|
|
|
mcacomponent_LTLIBRARIES = $(component_install)
|
|
|
|
mca_oob_tcp_la_SOURCES = $(sources)
|
2005-09-22 12:28:54 +00:00
|
|
|
mca_oob_tcp_la_LIBADD = \
|
|
|
|
$(LIBOMPI_LA) \
|
|
|
|
$(top_ompi_builddir)/orte/liborte.la \
|
|
|
|
$(top_ompi_builddir)/opal/libopal.la
|
2004-07-07 16:51:39 +00:00
|
|
|
mca_oob_tcp_la_LDFLAGS = -module -avoid-version
|
|
|
|
|
|
|
|
noinst_LTLIBRARIES = $(component_noinst)
|
|
|
|
libmca_oob_tcp_la_SOURCES = $(sources)
|
|
|
|
libmca_oob_tcp_la_LDFLAGS = -module -avoid-version
|
2004-07-12 22:46:57 +00:00
|
|
|
|