2004-08-16 02:08:48 +00:00
|
|
|
# -*- makefile -*-
|
|
|
|
#
|
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.
|
2004-11-22 01:38:40 +00:00
|
|
|
# $COPYRIGHT$
|
|
|
|
#
|
|
|
|
# Additional copyrights may follow
|
|
|
|
#
|
2004-08-16 02:08:48 +00:00
|
|
|
# $HEADER$
|
|
|
|
#
|
|
|
|
|
|
|
|
include $(top_srcdir)/config/Makefile.options
|
2004-08-19 22:23:34 +00:00
|
|
|
AM_CPPFLAGS = -D__USE_GNU -I$(top_srcdir)/test/support -DOMPI_ENABLE_DEBUG_OVERRIDE=1
|
2004-08-16 02:08:48 +00:00
|
|
|
|
|
|
|
noinst_PROGRAMS = \
|
2004-08-19 19:34:37 +00:00
|
|
|
test_gpr_proxy \
|
|
|
|
test_gpr_replica
|
2004-08-16 02:08:48 +00:00
|
|
|
|
|
|
|
test_gpr_replica_SOURCES = test_gpr_replica.c
|
|
|
|
test_gpr_replica_LDADD = \
|
|
|
|
$(top_builddir)/src/libmpi.la \
|
|
|
|
$(top_builddir)/test/support/libsupport.la
|
|
|
|
test_gpr_replica_DEPENDENCIES = $(test_gpr_replica_LDADD)
|
2004-08-19 16:51:51 +00:00
|
|
|
|
|
|
|
test_gpr_proxy_SOURCES = test_gpr_proxy.c
|
|
|
|
test_gpr_proxy_LDADD = \
|
|
|
|
$(top_builddir)/src/libmpi.la \
|
|
|
|
$(top_builddir)/test/support/libsupport.la
|
|
|
|
test_gpr_proxy_DEPENDENCIES = $(test_gpr_proxy_LDADD)
|
2004-08-19 19:34:37 +00:00
|
|
|
|