2004-05-24 21:45:00 +00:00
|
|
|
# -*- makefile -*-
|
|
|
|
#
|
2004-11-22 01:38:40 +00:00
|
|
|
# Copyright (c) 2004-2005 The Trustees of Indiana University.
|
|
|
|
# All rights reserved.
|
|
|
|
# Copyright (c) 2004-2005 The Trustees of the University of Tennessee.
|
|
|
|
# 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-05-24 21:45:00 +00:00
|
|
|
# $HEADER$
|
|
|
|
#
|
|
|
|
|
2005-07-23 11:11:19 +00:00
|
|
|
include $(top_srcdir)/test/support/Makefile.options
|
2004-05-24 21:45:00 +00:00
|
|
|
|
2005-03-22 04:25:01 +00:00
|
|
|
check_PROGRAMS = \
|
2004-06-07 15:33:53 +00:00
|
|
|
ompi_bitmap \
|
2004-08-13 19:48:32 +00:00
|
|
|
ompi_circular_buffer_fifo \
|
2004-08-27 16:31:27 +00:00
|
|
|
ompi_fifo \
|
2005-07-03 16:52:32 +00:00
|
|
|
opal_hash_table \
|
2005-07-03 16:22:16 +00:00
|
|
|
opal_list \
|
2005-07-03 16:38:52 +00:00
|
|
|
opal_value_array \
|
2004-06-22 20:52:18 +00:00
|
|
|
ompi_pointer_array \
|
2005-06-08 15:48:38 +00:00
|
|
|
ompi_rb_tree \
|
|
|
|
orte_bitmap
|
2004-05-24 21:45:00 +00:00
|
|
|
|
2005-03-22 04:25:01 +00:00
|
|
|
TESTS = \
|
|
|
|
$(check_PROGRAMS)
|
|
|
|
|
2004-06-07 15:33:53 +00:00
|
|
|
ompi_bitmap_SOURCES = ompi_bitmap.c
|
|
|
|
ompi_bitmap_LDADD = \
|
2005-07-04 14:53:10 +00:00
|
|
|
$(top_builddir)/ompi/libmpi.la \
|
|
|
|
$(top_builddir)/orte/liborte.la \
|
|
|
|
$(top_builddir)/opal/libopal.la \
|
2005-03-22 04:25:01 +00:00
|
|
|
$(top_builddir)/test/support/libsupport.a
|
2004-06-07 15:33:53 +00:00
|
|
|
ompi_bitmap_DEPENDENCIES = $(ompi_bitmap_LDADD)
|
2004-05-24 21:45:00 +00:00
|
|
|
|
2004-08-13 19:48:32 +00:00
|
|
|
ompi_circular_buffer_fifo_SOURCES = ompi_circular_buffer_fifo.c
|
|
|
|
ompi_circular_buffer_fifo_LDADD = \
|
2005-07-04 14:53:10 +00:00
|
|
|
$(top_builddir)/ompi/libmpi.la \
|
|
|
|
$(top_builddir)/orte/liborte.la \
|
|
|
|
$(top_builddir)/opal/libopal.la \
|
2005-03-22 04:25:01 +00:00
|
|
|
$(top_builddir)/test/support/libsupport.a
|
2004-08-13 19:48:32 +00:00
|
|
|
ompi_circular_buffer_fifo_DEPENDENCIES = $(ompi_circular_buffer_fifo_LDADD)
|
|
|
|
|
2004-08-27 16:31:27 +00:00
|
|
|
ompi_fifo_SOURCES = ompi_fifo.c
|
|
|
|
ompi_fifo_LDADD = \
|
2005-07-04 14:53:10 +00:00
|
|
|
$(top_builddir)/ompi/libmpi.la \
|
|
|
|
$(top_builddir)/orte/liborte.la \
|
|
|
|
$(top_builddir)/opal/libopal.la \
|
2005-03-22 04:25:01 +00:00
|
|
|
$(top_builddir)/test/support/libsupport.a
|
2004-08-27 16:31:27 +00:00
|
|
|
ompi_fifo_DEPENDENCIES = $(ompi_fifo_LDADD)
|
|
|
|
|
2005-07-03 16:22:16 +00:00
|
|
|
opal_list_SOURCES = opal_list.c
|
|
|
|
opal_list_LDADD = \
|
2005-07-04 14:53:10 +00:00
|
|
|
$(top_builddir)/opal/libopal.la \
|
2005-03-22 04:25:01 +00:00
|
|
|
$(top_builddir)/test/support/libsupport.a
|
2005-07-03 16:22:16 +00:00
|
|
|
opal_list_DEPENDENCIES = $(opal_list_LDADD)
|
2004-05-24 21:45:00 +00:00
|
|
|
|
2005-07-03 16:52:32 +00:00
|
|
|
opal_hash_table_SOURCES = opal_hash_table.c
|
|
|
|
opal_hash_table_LDADD = \
|
2005-07-04 14:53:10 +00:00
|
|
|
$(top_builddir)/opal/libopal.la \
|
2005-03-22 04:25:01 +00:00
|
|
|
$(top_builddir)/test/support/libsupport.a
|
2005-07-03 16:52:32 +00:00
|
|
|
opal_hash_table_DEPENDENCIES = $(opal_hash_table_LDADD)
|
2004-05-24 21:45:00 +00:00
|
|
|
|
2004-06-07 15:33:53 +00:00
|
|
|
ompi_pointer_array_SOURCES = ompi_pointer_array.c
|
|
|
|
ompi_pointer_array_LDADD = \
|
2005-07-04 14:53:10 +00:00
|
|
|
$(top_builddir)/ompi/libmpi.la \
|
|
|
|
$(top_builddir)/orte/liborte.la \
|
|
|
|
$(top_builddir)/opal/libopal.la \
|
2005-03-22 04:25:01 +00:00
|
|
|
$(top_builddir)/test/support/libsupport.a
|
2004-06-07 15:33:53 +00:00
|
|
|
ompi_pointer_array_DEPENDENCIES = $(ompi_pointer_array_LDADD)
|
2004-05-24 21:45:00 +00:00
|
|
|
|
2005-07-03 16:38:52 +00:00
|
|
|
opal_value_array_SOURCES = opal_value_array.c
|
|
|
|
opal_value_array_LDADD = \
|
2005-07-04 14:53:10 +00:00
|
|
|
$(top_builddir)/opal/libopal.la \
|
2005-03-22 04:25:01 +00:00
|
|
|
$(top_builddir)/test/support/libsupport.a
|
2005-07-03 16:38:52 +00:00
|
|
|
opal_value_array_DEPENDENCIES = $(opal_value_array_LDADD)
|
2004-05-24 21:45:00 +00:00
|
|
|
|
2004-06-22 20:52:18 +00:00
|
|
|
ompi_rb_tree_SOURCES = ompi_rb_tree.c
|
|
|
|
ompi_rb_tree_LDADD = \
|
2005-07-04 14:53:10 +00:00
|
|
|
$(top_builddir)/ompi/libmpi.la \
|
|
|
|
$(top_builddir)/orte/liborte.la \
|
|
|
|
$(top_builddir)/opal/libopal.la \
|
2005-03-22 04:25:01 +00:00
|
|
|
$(top_builddir)/test/support/libsupport.a
|
2004-06-22 20:52:18 +00:00
|
|
|
ompi_rb_tree_DEPENDENCIES = $(ompi_rb_tree_LDADD)
|
2005-06-08 15:48:38 +00:00
|
|
|
|
|
|
|
orte_bitmap_SOURCES = orte_bitmap.c
|
|
|
|
orte_bitmap_LDADD = \
|
2005-07-04 14:53:10 +00:00
|
|
|
$(top_builddir)/orte/liborte.la \
|
|
|
|
$(top_builddir)/opal/libopal.la \
|
2005-06-08 15:48:38 +00:00
|
|
|
$(top_builddir)/test/support/libsupport.a
|
|
|
|
orte_bitmap_DEPENDENCIES = $(orte_bitmap_LDADD)
|
|
|
|
|