2004-03-08 07:18:38 +03: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-03-08 07:18:38 +03:00
|
|
|
# $HEADER$
|
|
|
|
#
|
|
|
|
|
2005-09-01 16:16:36 +04:00
|
|
|
AM_CPPFLAGS = $(OPAL_LTDL_CPPFLAGS)
|
2005-05-24 02:06:50 +04:00
|
|
|
|
2005-09-01 16:16:36 +04:00
|
|
|
noinst_LTLIBRARIES = libmca_btl_base.la
|
2005-05-24 02:06:50 +04:00
|
|
|
|
|
|
|
# Source code files
|
|
|
|
|
2005-09-30 17:32:39 +04:00
|
|
|
dist_pkgdata_DATA = help-mpi-btl-base.txt
|
2005-09-30 08:39:44 +04:00
|
|
|
|
2005-05-24 02:06:50 +04:00
|
|
|
headers = \
|
2005-08-05 14:30:47 +04:00
|
|
|
base.h \
|
|
|
|
btl_base_error.h
|
2005-05-24 02:06:50 +04:00
|
|
|
|
2005-06-30 06:08:24 +04:00
|
|
|
libmca_btl_base_la_SOURCES = \
|
2005-07-02 19:06:47 +04:00
|
|
|
$(headers) \
|
|
|
|
btl_base_close.c \
|
2005-08-02 17:20:50 +04:00
|
|
|
btl_base_error.c \
|
2005-07-02 19:06:47 +04:00
|
|
|
btl_base_open.c \
|
|
|
|
btl_base_select.c
|
2005-05-24 02:06:50 +04:00
|
|
|
|
|
|
|
# Conditionally install the header files
|
|
|
|
|
|
|
|
if WANT_INSTALL_HEADERS
|
2005-07-02 19:06:47 +04:00
|
|
|
ompidir = $(includedir)/openmpi/ompi/mca/btl/base
|
2005-05-24 02:06:50 +04:00
|
|
|
ompi_HEADERS = $(headers)
|
|
|
|
else
|
|
|
|
ompidir = $(includedir)
|
|
|
|
endif
|
|
|
|
|
2005-07-08 17:54:12 +04:00
|
|
|
|
|
|
|
distclean-local:
|
|
|
|
rm -f static-components.h
|