2004-01-09 11:27:58 +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-09 11:27:58 +03:00
|
|
|
# $HEADER$
|
|
|
|
#
|
|
|
|
|
2005-09-07 09:54:53 +04:00
|
|
|
|
2004-01-11 03:11:55 +03:00
|
|
|
|
2004-03-17 22:06:06 +03:00
|
|
|
noinst_LTLIBRARIES = libmca_pml_base.la
|
2004-01-11 03:11:55 +03:00
|
|
|
|
2004-01-09 22:20:50 +03:00
|
|
|
# Source code files
|
2004-01-11 03:11:55 +03:00
|
|
|
|
2004-01-09 22:20:50 +03:00
|
|
|
headers = \
|
2004-01-12 00:31:52 +03:00
|
|
|
base.h \
|
2005-07-02 19:06:47 +04:00
|
|
|
pml_base_bsend.h \
|
2005-07-02 20:12:04 +04:00
|
|
|
pml_base_module_exchange.h \
|
2005-07-02 19:06:47 +04:00
|
|
|
pml_base_request.h \
|
|
|
|
pml_base_recvreq.h \
|
|
|
|
pml_base_sendreq.h
|
2004-01-09 22:20:50 +03:00
|
|
|
|
2004-03-17 22:06:06 +03:00
|
|
|
libmca_pml_base_la_SOURCES = \
|
2004-01-09 22:20:50 +03:00
|
|
|
$(headers) \
|
2005-07-02 19:06:47 +04:00
|
|
|
pml_base_bsend.c \
|
|
|
|
pml_base_close.c \
|
2005-07-03 04:52:18 +04:00
|
|
|
pml_base_module_exchange.c \
|
2005-07-02 19:06:47 +04:00
|
|
|
pml_base_open.c \
|
|
|
|
pml_base_recvreq.c \
|
2005-07-02 20:12:04 +04:00
|
|
|
pml_base_request.c \
|
|
|
|
pml_base_select.c \
|
2005-07-02 19:06:47 +04:00
|
|
|
pml_base_sendreq.c
|
2004-01-11 03:11:55 +03:00
|
|
|
|
2004-01-09 22:20:50 +03:00
|
|
|
# Conditionally install the header files
|
2004-01-11 03:11:55 +03:00
|
|
|
|
2004-01-09 22:20:50 +03:00
|
|
|
if WANT_INSTALL_HEADERS
|
2005-07-02 19:06:47 +04:00
|
|
|
ompidir = $(includedir)/openmpi/ompi/mca/pml/base
|
2004-06-07 19:33:53 +04:00
|
|
|
ompi_HEADERS = $(headers)
|
2004-01-09 22:20:50 +03:00
|
|
|
else
|
2004-06-07 19:33:53 +04:00
|
|
|
ompidir = $(includedir)
|
2004-01-09 22:20:50 +03:00
|
|
|
endif
|
|
|
|
|
2005-07-08 17:54:12 +04:00
|
|
|
|
|
|
|
distclean-local:
|
|
|
|
rm -f static-components.h
|