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.
|
2004-11-22 01:38:40 +00:00
|
|
|
# $COPYRIGHT$
|
|
|
|
#
|
|
|
|
# Additional copyrights may follow
|
|
|
|
#
|
2004-05-24 21:45:00 +00:00
|
|
|
# $HEADER$
|
|
|
|
#
|
|
|
|
|
|
|
|
include $(top_srcdir)/config/Makefile.options
|
2004-06-07 15:33:53 +00:00
|
|
|
AM_CPPFLAGS = -I$(top_srcdir)/test/support -DOMPI_ENABLE_DEBUG_OVERRIDE=1
|
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 \
|
2004-06-07 15:33:53 +00:00
|
|
|
ompi_hash_table \
|
|
|
|
ompi_list \
|
|
|
|
ompi_value_array \
|
2004-06-22 20:52:18 +00:00
|
|
|
ompi_pointer_array \
|
|
|
|
ompi_rb_tree
|
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-03-22 04:25:01 +00:00
|
|
|
$(top_builddir)/src/libmpi.la \
|
|
|
|
$(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-03-22 04:25:01 +00:00
|
|
|
$(top_builddir)/src/libmpi.la \
|
|
|
|
$(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-03-22 04:25:01 +00:00
|
|
|
$(top_builddir)/src/libmpi.la \
|
|
|
|
$(top_builddir)/test/support/libsupport.a
|
2004-08-27 16:31:27 +00:00
|
|
|
ompi_fifo_DEPENDENCIES = $(ompi_fifo_LDADD)
|
|
|
|
|
2004-06-07 15:33:53 +00:00
|
|
|
ompi_list_SOURCES = ompi_list.c
|
|
|
|
ompi_list_LDADD = \
|
2005-03-22 04:25:01 +00:00
|
|
|
$(top_builddir)/src/libmpi.la \
|
|
|
|
$(top_builddir)/test/support/libsupport.a
|
2004-06-07 15:33:53 +00:00
|
|
|
ompi_list_DEPENDENCIES = $(ompi_list_LDADD)
|
2004-05-24 21:45:00 +00:00
|
|
|
|
2004-06-07 15:33:53 +00:00
|
|
|
ompi_hash_table_SOURCES = ompi_hash_table.c
|
|
|
|
ompi_hash_table_LDADD = \
|
2005-03-22 04:25:01 +00:00
|
|
|
$(top_builddir)/src/libmpi.la \
|
|
|
|
$(top_builddir)/test/support/libsupport.a
|
|
|
|
ompi_hash_table_DEPENDENCIES = $(ompi_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-03-22 04:25:01 +00:00
|
|
|
$(top_builddir)/src/libmpi.la \
|
|
|
|
$(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
|
|
|
|
2004-06-07 15:33:53 +00:00
|
|
|
ompi_value_array_SOURCES = ompi_value_array.c
|
|
|
|
ompi_value_array_LDADD = \
|
2005-03-22 04:25:01 +00:00
|
|
|
$(top_builddir)/src/libmpi.la \
|
|
|
|
$(top_builddir)/test/support/libsupport.a
|
2004-06-07 15:33:53 +00:00
|
|
|
ompi_value_array_DEPENDENCIES = $(ompi_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-03-22 04:25:01 +00:00
|
|
|
$(top_builddir)/src/libmpi.la \
|
|
|
|
$(top_builddir)/test/support/libsupport.a
|
2004-06-22 20:52:18 +00:00
|
|
|
ompi_rb_tree_DEPENDENCIES = $(ompi_rb_tree_LDADD)
|