2004-01-09 08:27:58 +00:00
|
|
|
#
|
2005-11-05 19:57:48 +00: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 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-09 08:27:58 +00:00
|
|
|
# $HEADER$
|
|
|
|
#
|
|
|
|
|
2004-03-17 03:58:21 +00:00
|
|
|
|
2005-09-01 12:16:36 +00:00
|
|
|
AM_CPPFLAGS = $(OPAL_LTDL_CPPFLAGS)
|
|
|
|
|
2004-08-14 01:56:05 +00:00
|
|
|
noinst_LTLIBRARIES = libmca_io_base.la
|
2004-03-17 03:58:21 +00:00
|
|
|
|
2004-08-14 01:56:05 +00:00
|
|
|
headers = \
|
2004-09-14 10:55:10 +00:00
|
|
|
base.h \
|
|
|
|
io_base_request.h
|
2004-03-17 03:58:21 +00:00
|
|
|
|
2004-08-14 01:56:05 +00:00
|
|
|
libmca_io_base_la_SOURCES = \
|
2005-07-02 15:06:47 +00:00
|
|
|
$(headers) \
|
|
|
|
io_base_component_list.c \
|
|
|
|
io_base_close.c \
|
2004-09-14 10:55:10 +00:00
|
|
|
io_base_delete.c \
|
2005-07-02 15:06:47 +00:00
|
|
|
io_base_file_select.c \
|
|
|
|
io_base_find_available.c \
|
|
|
|
io_base_open.c \
|
2004-09-14 10:55:10 +00:00
|
|
|
io_base_request.c
|
2004-08-14 01:56:05 +00:00
|
|
|
|
|
|
|
# Conditionally install the header files
|
|
|
|
|
|
|
|
if WANT_INSTALL_HEADERS
|
2005-07-02 15:06:47 +00:00
|
|
|
ompidir = $(includedir)/openmpi/ompi/mca/io/base
|
2004-08-14 01:56:05 +00:00
|
|
|
ompi_HEADERS = $(headers)
|
|
|
|
else
|
|
|
|
ompidir = $(includedir)
|
|
|
|
endif
|
2005-07-08 13:54:12 +00:00
|
|
|
|
|
|
|
|
|
|
|
distclean-local:
|
|
|
|
rm -f static-components.h
|