2004-05-25 01:45:00 +04:00
|
|
|
# -*- makefile -*-
|
|
|
|
#
|
2005-11-05 22:57:48 +03: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 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$
|
|
|
|
#
|
|
|
|
|
2005-09-24 05:17:32 +04:00
|
|
|
AM_CPPFLAGS="-I$(top_srcdir)/test/support"
|
2005-09-07 09:54:53 +04:00
|
|
|
|
2005-03-22 07:25:01 +03:00
|
|
|
check_PROGRAMS = \
|
2004-06-07 19:33:53 +04:00
|
|
|
ompi_bitmap \
|
2005-07-03 20:52:32 +04:00
|
|
|
opal_hash_table \
|
2005-07-03 20:22:16 +04:00
|
|
|
opal_list \
|
2005-07-03 20:38:52 +04:00
|
|
|
opal_value_array \
|
2004-06-23 00:52:18 +04:00
|
|
|
ompi_pointer_array \
|
2006-09-05 17:05:03 +04:00
|
|
|
ompi_rb_tree
|
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-07-04 18:53:10 +04:00
|
|
|
$(top_builddir)/ompi/libmpi.la \
|
2006-12-05 21:27:24 +03:00
|
|
|
$(top_builddir)/orte/libopen-rte.la \
|
|
|
|
$(top_builddir)/opal/libopen-pal.la \
|
2005-03-22 07:25:01 +03:00
|
|
|
$(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
|
|
|
|
2005-11-13 14:33:23 +03:00
|
|
|
#ompi_circular_buffer_fifo_SOURCES = ompi_circular_buffer_fifo.c
|
|
|
|
#ompi_circular_buffer_fifo_LDADD = \
|
|
|
|
# $(top_builddir)/ompi/libmpi.la \
|
2006-12-05 21:27:24 +03:00
|
|
|
# $(top_builddir)/orte/libopen-rte.la \
|
|
|
|
# $(top_builddir)/opal/libopen-pal.la \
|
2005-11-13 14:33:23 +03:00
|
|
|
# $(top_builddir)/test/support/libsupport.a
|
|
|
|
#ompi_circular_buffer_fifo_DEPENDENCIES = $(ompi_circular_buffer_fifo_LDADD)
|
2004-08-13 23:48:32 +04:00
|
|
|
|
2005-11-13 14:33:23 +03:00
|
|
|
#ompi_fifo_SOURCES = ompi_fifo.c
|
|
|
|
#ompi_fifo_LDADD = \
|
|
|
|
# $(top_builddir)/ompi/libmpi.la \
|
2006-12-05 21:27:24 +03:00
|
|
|
# $(top_builddir)/orte/libopen-rte.la \
|
|
|
|
# $(top_builddir)/opal/libopen-pal.la \
|
2005-11-13 14:33:23 +03:00
|
|
|
# $(top_builddir)/test/support/libsupport.a
|
|
|
|
#ompi_fifo_DEPENDENCIES = $(ompi_fifo_LDADD)
|
2004-08-27 20:31:27 +04:00
|
|
|
|
2005-07-03 20:22:16 +04:00
|
|
|
opal_list_SOURCES = opal_list.c
|
|
|
|
opal_list_LDADD = \
|
2006-12-05 21:27:24 +03:00
|
|
|
$(top_builddir)/opal/libopen-pal.la \
|
2005-03-22 07:25:01 +03:00
|
|
|
$(top_builddir)/test/support/libsupport.a
|
2005-07-03 20:22:16 +04:00
|
|
|
opal_list_DEPENDENCIES = $(opal_list_LDADD)
|
2004-05-25 01:45:00 +04:00
|
|
|
|
2005-07-03 20:52:32 +04:00
|
|
|
opal_hash_table_SOURCES = opal_hash_table.c
|
|
|
|
opal_hash_table_LDADD = \
|
2006-12-05 21:27:24 +03:00
|
|
|
$(top_builddir)/opal/libopen-pal.la \
|
2005-03-22 07:25:01 +03:00
|
|
|
$(top_builddir)/test/support/libsupport.a
|
2005-07-03 20:52:32 +04:00
|
|
|
opal_hash_table_DEPENDENCIES = $(opal_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-07-04 18:53:10 +04:00
|
|
|
$(top_builddir)/ompi/libmpi.la \
|
2006-12-05 21:27:24 +03:00
|
|
|
$(top_builddir)/orte/libopen-rte.la \
|
|
|
|
$(top_builddir)/opal/libopen-pal.la \
|
2005-03-22 07:25:01 +03:00
|
|
|
$(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
|
|
|
|
2005-07-03 20:38:52 +04:00
|
|
|
opal_value_array_SOURCES = opal_value_array.c
|
|
|
|
opal_value_array_LDADD = \
|
2006-12-05 21:27:24 +03:00
|
|
|
$(top_builddir)/opal/libopen-pal.la \
|
2005-03-22 07:25:01 +03:00
|
|
|
$(top_builddir)/test/support/libsupport.a
|
2005-07-03 20:38:52 +04:00
|
|
|
opal_value_array_DEPENDENCIES = $(opal_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-07-04 18:53:10 +04:00
|
|
|
$(top_builddir)/ompi/libmpi.la \
|
2006-12-05 21:27:24 +03:00
|
|
|
$(top_builddir)/orte/libopen-rte.la \
|
|
|
|
$(top_builddir)/opal/libopen-pal.la \
|
2005-03-22 07:25:01 +03:00
|
|
|
$(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
|
|
|
|
2005-08-22 03:48:12 +04:00
|
|
|
clean-local:
|
|
|
|
rm -f ompi_bitmap_test_out.txt opal_hash_table_test_out.txt
|