2004-07-07 20:51:39 +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.
|
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-07-07 20:51:39 +04:00
|
|
|
# $HEADER$
|
|
|
|
#
|
|
|
|
|
|
|
|
sources = \
|
2004-09-02 10:02:09 +04:00
|
|
|
oob_tcp.c \
|
2004-07-14 01:03:03 +04:00
|
|
|
oob_tcp.h \
|
2004-08-03 04:50:14 +04:00
|
|
|
oob_tcp_hdr.h \
|
2004-09-02 22:55:22 +04:00
|
|
|
oob_tcp_addr.h \
|
2004-09-02 18:45:01 +04:00
|
|
|
oob_tcp_addr.c \
|
2004-09-02 10:02:09 +04:00
|
|
|
oob_tcp_msg.c \
|
2004-07-14 01:03:03 +04:00
|
|
|
oob_tcp_msg.h \
|
2004-09-02 10:02:09 +04:00
|
|
|
oob_tcp_peer.c \
|
2004-09-08 21:02:24 +04:00
|
|
|
oob_tcp_ping.c \
|
2004-07-14 01:03:03 +04:00
|
|
|
oob_tcp_peer.h \
|
2004-09-02 10:02:09 +04:00
|
|
|
oob_tcp_recv.c \
|
|
|
|
oob_tcp_send.c
|
2004-07-07 20:51:39 +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_oob_tcp_DSO
|
|
|
|
component_noinst =
|
|
|
|
component_install = mca_oob_tcp.la
|
|
|
|
else
|
|
|
|
component_noinst = libmca_oob_tcp.la
|
|
|
|
component_install =
|
|
|
|
endif
|
|
|
|
|
2007-04-12 15:19:42 +04:00
|
|
|
mcacomponentdir = $(pkglibdir)
|
2004-07-07 20:51:39 +04:00
|
|
|
mcacomponent_LTLIBRARIES = $(component_install)
|
|
|
|
mca_oob_tcp_la_SOURCES = $(sources)
|
|
|
|
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-13 02:46:57 +04:00
|
|
|
|