2004-08-15 07:33:13 +04:00
|
|
|
#
|
2004-11-22 04:38:40 +03: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$
|
|
|
|
#
|
|
|
|
# Additional copyrights may follow
|
|
|
|
#
|
2004-08-15 07:33:13 +04:00
|
|
|
# $HEADER$
|
|
|
|
#
|
|
|
|
|
2004-08-16 06:08:48 +04:00
|
|
|
# Use the top-level Makefile.options
|
|
|
|
|
2004-08-15 07:33:13 +04:00
|
|
|
include $(top_ompi_srcdir)/config/Makefile.options
|
|
|
|
|
2004-08-16 06:59:38 +04:00
|
|
|
sources = \
|
|
|
|
gpr_replica_component.c \
|
2004-11-20 22:12:43 +03:00
|
|
|
gpr_replica_recv_proxy_msgs.c \
|
|
|
|
gpr_replica_xmit_alerts.c \
|
2004-08-16 06:59:38 +04:00
|
|
|
gpr_replica.h \
|
2004-11-20 22:12:43 +03:00
|
|
|
gpr_replica_del_index.c \
|
|
|
|
gpr_replica_put_get.c \
|
|
|
|
gpr_replica_dump.c \
|
|
|
|
gpr_replica_cleanup.c \
|
|
|
|
gpr_replica_subscribe.c \
|
|
|
|
gpr_replica_compound_cmd.c \
|
|
|
|
gpr_replica_synchro.c \
|
|
|
|
gpr_replica_mode_ops.c \
|
|
|
|
gpr_replica_messaging.c \
|
|
|
|
gpr_replica_internals_dict_ops.c \
|
|
|
|
gpr_replica_internals_segment_ops.c \
|
|
|
|
gpr_replica_internals_trigger_ops.c \
|
|
|
|
gpr_replica_test_internals.c \
|
2004-08-16 06:59:38 +04:00
|
|
|
gpr_replica_internals.h
|
|
|
|
|
2004-08-16 06:08:48 +04:00
|
|
|
# Make the output library in this directory, and name it either
|
|
|
|
# mca_<type>_<name>.la (for DSO builds) or libmca_<type>_<name>.la
|
|
|
|
# (for static builds).
|
|
|
|
|
|
|
|
if OMPI_BUILD_gpr_replica_DSO
|
2004-08-16 06:59:38 +04:00
|
|
|
component_noinst =
|
2004-08-16 06:08:48 +04:00
|
|
|
component_install = mca_gpr_replica.la
|
|
|
|
else
|
|
|
|
component_noinst = libmca_gpr_replica.la
|
|
|
|
component_install =
|
|
|
|
endif
|
|
|
|
|
|
|
|
mcacomponentdir = $(libdir)/openmpi
|
|
|
|
mcacomponent_LTLIBRARIES = $(component_install)
|
2004-08-16 06:59:38 +04:00
|
|
|
mca_gpr_replica_la_SOURCES = $(sources)
|
2004-08-16 06:08:48 +04:00
|
|
|
mca_gpr_replica_la_LDFLAGS = -module -avoid-version
|
|
|
|
|
|
|
|
noinst_LTLIBRARIES = $(component_noinst)
|
2004-08-16 06:59:38 +04:00
|
|
|
libmca_gpr_replica_la_SOURCES =$(sources)
|
2004-08-16 06:08:48 +04:00
|
|
|
libmca_gpr_replica_la_LDFLAGS = -module -avoid-version
|