2004-01-10 04:44:43 +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-10 04:44:43 +00:00
|
|
|
# $HEADER$
|
|
|
|
#
|
|
|
|
|
2005-09-07 05:54:53 +00:00
|
|
|
|
2004-01-31 21:43:26 +00:00
|
|
|
|
|
|
|
noinst_LTLIBRARIES = libmca_oob_base.la
|
|
|
|
|
|
|
|
# Source code files
|
|
|
|
|
|
|
|
headers = \
|
|
|
|
base.h
|
|
|
|
|
|
|
|
# Library
|
|
|
|
|
|
|
|
libmca_oob_base_la_SOURCES = \
|
|
|
|
$(headers) \
|
2004-09-30 20:54:26 +00:00
|
|
|
oob_base_barrier.c \
|
2004-01-31 21:43:26 +00:00
|
|
|
oob_base_close.c \
|
2004-07-01 14:49:54 +00:00
|
|
|
oob_base_init.c \
|
2004-07-01 16:25:44 +00:00
|
|
|
oob_base_open.c \
|
2004-09-08 18:03:05 +00:00
|
|
|
oob_base_ping.c \
|
2004-07-01 14:49:54 +00:00
|
|
|
oob_base_recv.c \
|
2004-07-01 16:25:44 +00:00
|
|
|
oob_base_recv_nb.c \
|
|
|
|
oob_base_send.c \
|
2004-11-20 19:12:43 +00:00
|
|
|
oob_base_xcast.c \
|
2004-08-18 15:51:40 +00:00
|
|
|
oob_base_send_nb.c
|
2004-07-01 17:45:34 +00:00
|
|
|
|
2004-01-31 21:43:26 +00:00
|
|
|
# Conditionally install the header files
|
|
|
|
|
|
|
|
if WANT_INSTALL_HEADERS
|
2005-07-02 15:13:41 +00:00
|
|
|
ortedir = $(includedir)/openmpi/orte/mca/oob/base
|
|
|
|
orte_HEADERS = $(headers)
|
2004-01-31 21:43:26 +00:00
|
|
|
else
|
2005-07-02 15:13:41 +00:00
|
|
|
ortedir = $(includedir)
|
2004-01-31 21:43:26 +00:00
|
|
|
endif
|
2005-07-08 13:54:12 +00:00
|
|
|
|
|
|
|
distclean-local:
|
|
|
|
rm -f static-components.h
|