2004-07-07 20:59:20 +00:00
|
|
|
#
|
|
|
|
# $HEADER$
|
|
|
|
#
|
|
|
|
|
|
|
|
include $(top_srcdir)/config/Makefile.options
|
|
|
|
|
|
|
|
noinst_LTLIBRARIES = libmca_gpr_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 = \
|
|
|
|
base.h
|
|
|
|
|
|
|
|
libmca_gpr_base_la_SOURCES = \
|
2004-08-15 03:33:13 +00:00
|
|
|
$(headers) \
|
|
|
|
gpr_base_open.c \
|
|
|
|
gpr_base_close.c \
|
2004-11-20 19:12:43 +00:00
|
|
|
gpr_base_pack_cleanup.c \
|
|
|
|
gpr_base_pack_del_index.c \
|
|
|
|
gpr_base_unpack_del_index.c \
|
|
|
|
gpr_base_pack_dump.c \
|
|
|
|
gpr_base_print_dump.c \
|
|
|
|
gpr_base_pack_mode_ops.c \
|
|
|
|
gpr_base_unpack_mode_ops.c \
|
|
|
|
gpr_base_pack_put_get.c \
|
|
|
|
gpr_base_unpack_put_get.c \
|
|
|
|
gpr_base_pack_startup_shutdown_msg.c \
|
|
|
|
gpr_base_unpack_startup_shutdown_msg.c \
|
|
|
|
gpr_base_pack_subscribe.c \
|
|
|
|
gpr_base_unpack_subscribe.c \
|
|
|
|
gpr_base_pack_synchro.c \
|
|
|
|
gpr_base_unpack_synchro.c \
|
|
|
|
gpr_base_pack_test_internals.c \
|
|
|
|
gpr_base_unpack_test_internals.c \
|
2004-08-15 03:33:13 +00:00
|
|
|
gpr_base_select.c
|
2004-07-07 20:59:20 +00:00
|
|
|
|
|
|
|
# Conditionally install the header files
|
|
|
|
|
|
|
|
if WANT_INSTALL_HEADERS
|
|
|
|
ompidir = $(includedir)/openmpi/mca/gpr/base
|
|
|
|
ompi_HEADERS = $(headers)
|
|
|
|
else
|
|
|
|
ompidir = $(includedir)
|
|
|
|
endif
|
|
|
|
|