2004-12-21 22:16:09 +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.
|
|
|
|
# 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-12-21 22:16:09 +00:00
|
|
|
# $COPYRIGHT$
|
|
|
|
#
|
|
|
|
# Additional copyrights may follow
|
|
|
|
#
|
|
|
|
# $HEADER$
|
|
|
|
#
|
|
|
|
|
|
|
|
include $(top_srcdir)/config/Makefile.options
|
|
|
|
|
|
|
|
noinst_LTLIBRARIES = libmca_iof_base.la
|
|
|
|
|
|
|
|
# For VPATH builds, have to specify where static-modules.h will be found
|
|
|
|
|
|
|
|
AM_CPPFLAGS = -I$(top_builddir)/src
|
|
|
|
|
|
|
|
# Source code files
|
|
|
|
|
|
|
|
headers = \
|
2005-01-12 20:51:34 +00:00
|
|
|
base.h \
|
2005-01-13 15:32:03 +00:00
|
|
|
iof_base_header.h \
|
2005-01-12 21:01:40 +00:00
|
|
|
iof_base_endpoint.h \
|
2005-04-15 21:18:20 +00:00
|
|
|
iof_base_fragment.h \
|
|
|
|
iof_base_setup.h
|
2004-12-21 22:16:09 +00:00
|
|
|
|
|
|
|
libmca_iof_base_la_SOURCES = \
|
|
|
|
$(headers) \
|
|
|
|
iof_base_close.c \
|
|
|
|
iof_base_open.c \
|
2005-01-14 00:11:24 +00:00
|
|
|
iof_base_flush.c \
|
2005-01-12 20:51:34 +00:00
|
|
|
iof_base_endpoint.c \
|
|
|
|
iof_base_fragment.c \
|
2005-04-15 21:18:20 +00:00
|
|
|
iof_base_select.c \
|
|
|
|
iof_base_setup.c
|
2004-12-21 22:16:09 +00:00
|
|
|
|
|
|
|
# Conditionally install the header files
|
|
|
|
|
|
|
|
if WANT_INSTALL_HEADERS
|
2005-07-02 15:13:41 +00:00
|
|
|
ortedir = $(includedir)/openmpi/orte/mca/iof/base
|
|
|
|
orte_HEADERS = $(headers)
|
2004-12-21 22:16:09 +00:00
|
|
|
else
|
2005-07-02 15:13:41 +00:00
|
|
|
ortedir = $(includedir)
|
2004-12-21 22:16:09 +00:00
|
|
|
endif
|
|
|
|
|