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