
Added the gpr test directory to configure.ac, and updated the tests. This commit was SVN r2228.
25 строки
658 B
Makefile
25 строки
658 B
Makefile
# -*- makefile -*-
|
|
#
|
|
# $HEADER$
|
|
#
|
|
|
|
include $(top_srcdir)/config/Makefile.options
|
|
AM_CPPFLAGS = -I$(top_srcdir)/test/support -DOMPI_ENABLE_DEBUG_OVERRIDE=1
|
|
|
|
noinst_PROGRAMS = \
|
|
test_gpr_replica \
|
|
test_gpr_proxy
|
|
|
|
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)
|
|
|
|
|
|
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)
|