300e4135ac
This commit was SVN r2241.
25 строки
667 B
Makefile
25 строки
667 B
Makefile
# -*- makefile -*-
|
|
#
|
|
# $HEADER$
|
|
#
|
|
|
|
include $(top_srcdir)/config/Makefile.options
|
|
AM_CPPFLAGS = -D__USE_GNU -I$(top_srcdir)/test/support -DOMPI_ENABLE_DEBUG_OVERRIDE=1
|
|
|
|
noinst_PROGRAMS = \
|
|
test_gpr_proxy \
|
|
test_gpr_replica
|
|
|
|
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)
|
|
|