2004-07-07 20:59:20 +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-07-07 20:59:20 +00:00
|
|
|
# $HEADER$
|
|
|
|
#
|
|
|
|
|
2005-09-07 05:54:53 +00:00
|
|
|
|
2004-07-07 20:59:20 +00:00
|
|
|
|
|
|
|
noinst_LTLIBRARIES = libmca_gpr_base.la
|
|
|
|
|
|
|
|
# Source code files
|
|
|
|
|
|
|
|
headers = \
|
|
|
|
base.h
|
|
|
|
|
|
|
|
libmca_gpr_base_la_SOURCES = \
|
2004-08-15 03:33:13 +00:00
|
|
|
$(headers) \
|
|
|
|
gpr_base_open.c \
|
|
|
|
gpr_base_close.c \
|
2005-05-16 21:01:09 +00:00
|
|
|
gpr_base_select.c \
|
2005-08-01 16:38:15 +00:00
|
|
|
gpr_base_simplified_put.c \
|
|
|
|
gpr_base_simplified_subscribe.c \
|
2005-07-09 18:52:53 +00:00
|
|
|
gpr_base_xfer_payload.c \
|
2005-08-01 16:38:15 +00:00
|
|
|
data_type_support/gpr_data_type_packing_fns.c \
|
2005-07-09 18:52:53 +00:00
|
|
|
data_type_support/gpr_data_type_unpacking_fns.c \
|
|
|
|
unpack_api_response/gpr_base_unpack_cleanup.c \
|
|
|
|
unpack_api_response/gpr_base_unpack_del_index.c \
|
|
|
|
unpack_api_response/gpr_base_print_dump.c \
|
|
|
|
unpack_api_response/gpr_base_dump_notify.c \
|
|
|
|
unpack_api_response/gpr_base_unpack_arithmetic_ops.c \
|
|
|
|
unpack_api_response/gpr_base_unpack_put_get.c \
|
|
|
|
unpack_api_response/gpr_base_unpack_subscribe.c \
|
|
|
|
pack_api_cmd/gpr_base_pack_cleanup.c \
|
|
|
|
pack_api_cmd/gpr_base_pack_del_index.c \
|
|
|
|
pack_api_cmd/gpr_base_pack_dump.c \
|
|
|
|
pack_api_cmd/gpr_base_pack_arithmetic_ops.c \
|
|
|
|
pack_api_cmd/gpr_base_pack_put_get.c \
|
|
|
|
pack_api_cmd/gpr_base_pack_subscribe.c
|
2004-07-07 20:59:20 +00:00
|
|
|
|
|
|
|
# Conditionally install the header files
|
|
|
|
|
|
|
|
if WANT_INSTALL_HEADERS
|
2005-07-02 15:13:41 +00:00
|
|
|
ortedir = $(includedir)/openmpi/orte/mca/gpr/base
|
|
|
|
orte_HEADERS = $(headers)
|
2004-07-07 20:59:20 +00:00
|
|
|
else
|
2005-07-02 15:13:41 +00:00
|
|
|
ortedir = $(includedir)
|
2004-07-07 20:59:20 +00:00
|
|
|
endif
|
|
|
|
|
2005-07-08 13:54:12 +00:00
|
|
|
distclean-local:
|
|
|
|
rm -f static-components.h
|