2004-08-03 20:34:59 +04:00
|
|
|
# -*- makefile -*-
|
|
|
|
#
|
|
|
|
# $HEADER$
|
|
|
|
#
|
|
|
|
|
|
|
|
include $(top_srcdir)/config/Makefile.options
|
2004-08-06 21:23:37 +04:00
|
|
|
AM_CPPFLAGS = -g -I$(top_srcdir)/test/support -DOMPI_ENABLE_DEBUG_OVERRIDE=1
|
2004-08-03 20:34:59 +04:00
|
|
|
|
|
|
|
noinst_PROGRAMS = \
|
|
|
|
oob_test \
|
2004-08-13 08:18:43 +04:00
|
|
|
oob_test_self \
|
|
|
|
oob_test_packed
|
2004-08-03 20:34:59 +04:00
|
|
|
|
|
|
|
oob_test_SOURCES = oob_test.c
|
|
|
|
oob_test_LDADD = \
|
|
|
|
$(top_builddir)/test/support/libsupport.la \
|
|
|
|
$(top_builddir)/src/libmpi.la
|
|
|
|
oob_test_DEPENDENCIES = $(oob_test_LDADD)
|
|
|
|
|
|
|
|
oob_test_self_SOURCES = oob_test_self.c
|
|
|
|
oob_test_self_LDADD = \
|
|
|
|
$(top_builddir)/test/support/libsupport.la \
|
|
|
|
$(top_builddir)/src/libmpi.la
|
|
|
|
oob_test_self_DEPENDENCIES = $(oob_test_LDADD)
|
|
|
|
|
2004-08-13 08:18:43 +04:00
|
|
|
oob_test_packed_SOURCES = oob_test_packed.c
|
|
|
|
oob_test_packed_LDADD = \
|
|
|
|
$(top_builddir)/test/support/libsupport.la \
|
|
|
|
$(top_builddir)/src/libmpi.la
|
|
|
|
oob_test_packed_DEPENDENCIES = $(oob_test_LDADD)
|
|
|
|
|