2004-01-09 08:27:58 +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-09 08:27:58 +00:00
|
|
|
# $HEADER$
|
|
|
|
#
|
|
|
|
|
|
|
|
include $(top_srcdir)/config/Makefile.options
|
2004-03-17 03:58:21 +00:00
|
|
|
|
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 = \
|
2004-09-14 10:55:10 +00:00
|
|
|
$(headers) \
|
2004-12-12 15:29:29 +00:00
|
|
|
io_base_component_list.c \
|
2004-09-14 10:55:10 +00:00
|
|
|
io_base_close.c \
|
|
|
|
io_base_delete.c \
|
|
|
|
io_base_file_select.c \
|
|
|
|
io_base_find_available.c \
|
|
|
|
io_base_open.c \
|
|
|
|
io_base_request.c
|
2004-08-14 01:56:05 +00:00
|
|
|
|
|
|
|
# Conditionally install the header files
|
|
|
|
|
|
|
|
if WANT_INSTALL_HEADERS
|
|
|
|
ompidir = $(includedir)/openmpi/mca/io/base
|
|
|
|
ompi_HEADERS = $(headers)
|
|
|
|
else
|
|
|
|
ompidir = $(includedir)
|
|
|
|
endif
|