2004-05-25 01:45:00 +04:00
|
|
|
# -*- makefile -*-
|
|
|
|
#
|
2004-11-22 04:38:40 +03: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 23:09:25 +03:00
|
|
|
# Copyright (c) 2004-2005 High Performance Computing Center Stuttgart,
|
|
|
|
# University of Stuttgart. All rights reserved.
|
2005-03-24 15:43:37 +03:00
|
|
|
# Copyright (c) 2004-2005 The Regents of the University of California.
|
|
|
|
# All rights reserved.
|
2004-11-22 04:38:40 +03:00
|
|
|
# $COPYRIGHT$
|
|
|
|
#
|
|
|
|
# Additional copyrights may follow
|
|
|
|
#
|
2004-05-25 01:45:00 +04:00
|
|
|
# $HEADER$
|
|
|
|
#
|
|
|
|
|
|
|
|
include $(top_srcdir)/config/Makefile.options
|
2005-04-15 17:32:18 +04:00
|
|
|
AM_CPPFLAGS = -I$(top_srcdir)/test/support
|
2004-05-25 01:45:00 +04:00
|
|
|
|
2005-03-22 07:25:01 +03:00
|
|
|
check_PROGRAMS = \
|
2004-06-07 19:33:53 +04:00
|
|
|
ompi_bitmap \
|
2004-08-13 23:48:32 +04:00
|
|
|
ompi_circular_buffer_fifo \
|
2004-08-27 20:31:27 +04:00
|
|
|
ompi_fifo \
|
2004-06-07 19:33:53 +04:00
|
|
|
ompi_hash_table \
|
|
|
|
ompi_list \
|
|
|
|
ompi_value_array \
|
2004-06-23 00:52:18 +04:00
|
|
|
ompi_pointer_array \
|
2005-06-08 19:48:38 +04:00
|
|
|
ompi_rb_tree \
|
|
|
|
orte_bitmap
|
2004-05-25 01:45:00 +04:00
|
|
|
|
2005-03-22 07:25:01 +03:00
|
|
|
TESTS = \
|
|
|
|
$(check_PROGRAMS)
|
|
|
|
|
2004-06-07 19:33:53 +04:00
|
|
|
ompi_bitmap_SOURCES = ompi_bitmap.c
|
|
|
|
ompi_bitmap_LDADD = \
|
2005-03-22 07:25:01 +03:00
|
|
|
$(top_builddir)/src/libmpi.la \
|
|
|
|
$(top_builddir)/test/support/libsupport.a
|
2004-06-07 19:33:53 +04:00
|
|
|
ompi_bitmap_DEPENDENCIES = $(ompi_bitmap_LDADD)
|
2004-05-25 01:45:00 +04:00
|
|
|
|
2004-08-13 23:48:32 +04:00
|
|
|
ompi_circular_buffer_fifo_SOURCES = ompi_circular_buffer_fifo.c
|
|
|
|
ompi_circular_buffer_fifo_LDADD = \
|
2005-03-22 07:25:01 +03:00
|
|
|
$(top_builddir)/src/libmpi.la \
|
|
|
|
$(top_builddir)/test/support/libsupport.a
|
2004-08-13 23:48:32 +04:00
|
|
|
ompi_circular_buffer_fifo_DEPENDENCIES = $(ompi_circular_buffer_fifo_LDADD)
|
|
|
|
|
2004-08-27 20:31:27 +04:00
|
|
|
ompi_fifo_SOURCES = ompi_fifo.c
|
|
|
|
ompi_fifo_LDADD = \
|
2005-03-22 07:25:01 +03:00
|
|
|
$(top_builddir)/src/libmpi.la \
|
|
|
|
$(top_builddir)/test/support/libsupport.a
|
2004-08-27 20:31:27 +04:00
|
|
|
ompi_fifo_DEPENDENCIES = $(ompi_fifo_LDADD)
|
|
|
|
|
2004-06-07 19:33:53 +04:00
|
|
|
ompi_list_SOURCES = ompi_list.c
|
|
|
|
ompi_list_LDADD = \
|
2005-03-22 07:25:01 +03:00
|
|
|
$(top_builddir)/src/libmpi.la \
|
|
|
|
$(top_builddir)/test/support/libsupport.a
|
2004-06-07 19:33:53 +04:00
|
|
|
ompi_list_DEPENDENCIES = $(ompi_list_LDADD)
|
2004-05-25 01:45:00 +04:00
|
|
|
|
2004-06-07 19:33:53 +04:00
|
|
|
ompi_hash_table_SOURCES = ompi_hash_table.c
|
|
|
|
ompi_hash_table_LDADD = \
|
2005-03-22 07:25:01 +03:00
|
|
|
$(top_builddir)/src/libmpi.la \
|
|
|
|
$(top_builddir)/test/support/libsupport.a
|
|
|
|
ompi_hash_table_DEPENDENCIES = $(ompi_hash_table_LDADD)
|
2004-05-25 01:45:00 +04:00
|
|
|
|
2004-06-07 19:33:53 +04:00
|
|
|
ompi_pointer_array_SOURCES = ompi_pointer_array.c
|
|
|
|
ompi_pointer_array_LDADD = \
|
2005-03-22 07:25:01 +03:00
|
|
|
$(top_builddir)/src/libmpi.la \
|
|
|
|
$(top_builddir)/test/support/libsupport.a
|
2004-06-07 19:33:53 +04:00
|
|
|
ompi_pointer_array_DEPENDENCIES = $(ompi_pointer_array_LDADD)
|
2004-05-25 01:45:00 +04:00
|
|
|
|
2004-06-07 19:33:53 +04:00
|
|
|
ompi_value_array_SOURCES = ompi_value_array.c
|
|
|
|
ompi_value_array_LDADD = \
|
2005-03-22 07:25:01 +03:00
|
|
|
$(top_builddir)/src/libmpi.la \
|
|
|
|
$(top_builddir)/test/support/libsupport.a
|
2004-06-07 19:33:53 +04:00
|
|
|
ompi_value_array_DEPENDENCIES = $(ompi_value_array_LDADD)
|
2004-05-25 01:45:00 +04:00
|
|
|
|
2004-06-23 00:52:18 +04:00
|
|
|
ompi_rb_tree_SOURCES = ompi_rb_tree.c
|
|
|
|
ompi_rb_tree_LDADD = \
|
2005-03-22 07:25:01 +03:00
|
|
|
$(top_builddir)/src/libmpi.la \
|
|
|
|
$(top_builddir)/test/support/libsupport.a
|
2004-06-23 00:52:18 +04:00
|
|
|
ompi_rb_tree_DEPENDENCIES = $(ompi_rb_tree_LDADD)
|
2005-06-08 19:48:38 +04:00
|
|
|
|
|
|
|
orte_bitmap_SOURCES = orte_bitmap.c
|
|
|
|
orte_bitmap_LDADD = \
|
|
|
|
$(top_builddir)/src/libmpi.la \
|
|
|
|
$(top_builddir)/test/support/libsupport.a
|
|
|
|
orte_bitmap_DEPENDENCIES = $(orte_bitmap_LDADD)
|
|
|
|
|