2004-07-09 01:58:08 +00:00
|
|
|
# -*- makefile -*-
|
|
|
|
#
|
|
|
|
# $HEADER$
|
|
|
|
#
|
|
|
|
|
|
|
|
include $(top_srcdir)/config/Makefile.options
|
|
|
|
AM_CPPFLAGS = -I$(top_srcdir)/test/support -DOMPI_ENABLE_DEBUG_OVERRIDE=1
|
|
|
|
|
|
|
|
noinst_PROGRAMS = \
|
2004-08-18 16:13:13 +00:00
|
|
|
test_ns_replica \
|
|
|
|
test_ns_proxy
|
2004-07-09 01:58:08 +00:00
|
|
|
|
|
|
|
test_ns_replica_SOURCES = test_ns_replica.c
|
|
|
|
test_ns_replica_LDADD = \
|
2004-08-18 16:13:13 +00:00
|
|
|
$(top_builddir)/test/support/libsupport.la \
|
|
|
|
$(top_builddir)/src/libmpi.la
|
2004-07-09 01:58:08 +00:00
|
|
|
test_ns_replica_DEPENDENCIES = $(test_ns_replica_LDADD)
|
2004-08-18 16:13:13 +00:00
|
|
|
|
|
|
|
test_ns_proxy_SOURCES = test_ns_proxy.c
|
|
|
|
test_ns_proxy_LDADD = \
|
|
|
|
$(top_builddir)/test/support/libsupport.la \
|
|
|
|
$(top_builddir)/src/libmpi.la
|
|
|
|
test_ns_proxy_DEPENDENCIES = $(test_ns_proxy_LDADD)
|