2004-08-03 16:34:59 +00:00
|
|
|
# -*- makefile -*-
|
|
|
|
#
|
2005-11-05 19:57:48 +00:00
|
|
|
# Copyright (c) 2004-2005 The Trustees of Indiana University and Indiana
|
|
|
|
# University Research and Technology
|
|
|
|
# Corporation. All rights reserved.
|
|
|
|
# Copyright (c) 2004-2005 The University of Tennessee and The University
|
|
|
|
# of Tennessee Research Foundation. 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.
|
2005-03-24 12:43:37 +00:00
|
|
|
# Copyright (c) 2004-2005 The Regents of the University of California.
|
|
|
|
# All rights reserved.
|
2004-11-22 01:38:40 +00:00
|
|
|
# $COPYRIGHT$
|
|
|
|
#
|
|
|
|
# Additional copyrights may follow
|
|
|
|
#
|
2004-08-03 16:34:59 +00:00
|
|
|
# $HEADER$
|
|
|
|
#
|
|
|
|
|
2005-09-24 01:17:32 +00:00
|
|
|
AM_CPPFLAGS="-I$(top_srcdir)/test/support"
|
2004-08-03 16:34:59 +00:00
|
|
|
|
2005-03-22 04:25:01 +00:00
|
|
|
check_PROGRAMS = \
|
2004-08-03 16:34:59 +00:00
|
|
|
oob_test \
|
2004-08-13 04:18:43 +00:00
|
|
|
oob_test_self \
|
2005-03-22 04:25:01 +00:00
|
|
|
oob_test_packed
|
|
|
|
|
|
|
|
TESTS = \
|
|
|
|
$(check_PROGRAMS)
|
2004-08-03 16:34:59 +00:00
|
|
|
|
|
|
|
oob_test_SOURCES = oob_test.c
|
|
|
|
oob_test_LDADD = \
|
2005-03-22 04:25:01 +00:00
|
|
|
$(top_builddir)/test/support/libsupport.a \
|
2006-12-05 18:27:24 +00:00
|
|
|
$(top_builddir)/orte/libopen-rte.la \
|
|
|
|
$(top_builddir)/opal/libopen-pal.la
|
2004-08-03 16:34:59 +00:00
|
|
|
oob_test_DEPENDENCIES = $(oob_test_LDADD)
|
|
|
|
|
|
|
|
oob_test_self_SOURCES = oob_test_self.c
|
|
|
|
oob_test_self_LDADD = \
|
2005-03-22 04:25:01 +00:00
|
|
|
$(top_builddir)/test/support/libsupport.a \
|
2006-12-05 18:27:24 +00:00
|
|
|
$(top_builddir)/orte/libopen-rte.la \
|
|
|
|
$(top_builddir)/opal/libopen-pal.la
|
2004-08-03 16:34:59 +00:00
|
|
|
oob_test_self_DEPENDENCIES = $(oob_test_LDADD)
|
|
|
|
|
2004-08-13 04:18:43 +00:00
|
|
|
oob_test_packed_SOURCES = oob_test_packed.c
|
|
|
|
oob_test_packed_LDADD = \
|
2005-03-22 04:25:01 +00:00
|
|
|
$(top_builddir)/test/support/libsupport.a \
|
2006-12-05 18:27:24 +00:00
|
|
|
$(top_builddir)/orte/libopen-rte.la \
|
|
|
|
$(top_builddir)/opal/libopen-pal.la
|
2004-08-13 04:18:43 +00:00
|
|
|
oob_test_packed_DEPENDENCIES = $(oob_test_LDADD)
|
|
|
|
|