2004-08-16 06:08:48 +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-08-16 06:08:48 +04:00
|
|
|
# $HEADER$
|
|
|
|
#
|
|
|
|
|
2005-07-23 15:11:19 +04:00
|
|
|
include $(top_srcdir)/test/support/Makefile.options
|
2004-08-16 06:08:48 +04:00
|
|
|
|
2005-03-22 17:41:45 +03:00
|
|
|
TESTS_ENVIRONMENT = TEST_WRITE_TO_FILE=1
|
|
|
|
|
2005-07-23 15:11:19 +04:00
|
|
|
check_PROGRAMS = \
|
2005-03-22 03:31:17 +03:00
|
|
|
gpr_internal_fns \
|
|
|
|
gpr_mem_leaks \
|
|
|
|
gpr_overwrite \
|
|
|
|
gpr_put_get \
|
2005-08-02 01:45:39 +04:00
|
|
|
gpr_quick_put \
|
|
|
|
gpr_quick_triggers \
|
2005-04-01 22:02:01 +04:00
|
|
|
gpr_threads \
|
2005-03-22 03:31:17 +03:00
|
|
|
gpr_triggers
|
2004-08-16 06:08:48 +04:00
|
|
|
|
2005-06-24 20:59:37 +04:00
|
|
|
TESTS =
|
2005-03-22 07:25:01 +03:00
|
|
|
|
2005-07-23 15:11:19 +04:00
|
|
|
gpr_internal_fns_SOURCES = gpr_internal_fns.c
|
|
|
|
gpr_internal_fns_LDADD = \
|
2005-08-02 01:45:39 +04:00
|
|
|
$(top_builddir)/orte/liborte.la \
|
|
|
|
$(top_builddir)/opal/libopal.la \
|
2005-07-23 15:11:19 +04:00
|
|
|
$(top_builddir)/test/support/libsupport.a
|
|
|
|
gpr_internal_fns_DEPENDENCIES = $(gpr_internal_fns_LDADD)
|
2004-08-19 20:51:51 +04:00
|
|
|
|
2005-07-23 15:11:19 +04:00
|
|
|
gpr_mem_leaks_SOURCES = gpr_mem_leaks.c
|
|
|
|
gpr_mem_leaks_LDADD = \
|
2005-08-02 01:45:39 +04:00
|
|
|
$(top_builddir)/orte/liborte.la \
|
|
|
|
$(top_builddir)/opal/libopal.la \
|
2005-07-23 15:11:19 +04:00
|
|
|
$(top_builddir)/test/support/libsupport.a
|
|
|
|
gpr_mem_leaks_DEPENDENCIES = $(gpr_mem_leaks_LDADD)
|
2004-08-19 23:34:37 +04:00
|
|
|
|
2005-07-23 15:11:19 +04:00
|
|
|
gpr_overwrite_SOURCES = gpr_overwrite.c
|
|
|
|
gpr_overwrite_LDADD = \
|
2005-08-02 01:45:39 +04:00
|
|
|
$(top_builddir)/orte/liborte.la \
|
|
|
|
$(top_builddir)/opal/libopal.la \
|
2005-07-23 15:11:19 +04:00
|
|
|
$(top_builddir)/test/support/libsupport.a
|
|
|
|
gpr_overwrite_DEPENDENCIES = $(gpr_overwrite_LDADD)
|
2005-03-18 06:43:59 +03:00
|
|
|
|
2005-07-23 15:11:19 +04:00
|
|
|
gpr_put_get_SOURCES = gpr_put_get.c
|
|
|
|
gpr_put_get_LDADD = \
|
2005-08-02 01:45:39 +04:00
|
|
|
$(top_builddir)/orte/liborte.la \
|
|
|
|
$(top_builddir)/opal/libopal.la \
|
2005-07-23 15:11:19 +04:00
|
|
|
$(top_builddir)/test/support/libsupport.a
|
|
|
|
gpr_put_get_DEPENDENCIES = $(gpr_put_get_LDADD)
|
2005-03-22 03:31:17 +03:00
|
|
|
|
2005-07-23 15:11:19 +04:00
|
|
|
gpr_threads_SOURCES = gpr_threads.c
|
|
|
|
gpr_threads_LDADD = \
|
2005-08-02 01:45:39 +04:00
|
|
|
$(top_builddir)/orte/liborte.la \
|
|
|
|
$(top_builddir)/opal/libopal.la \
|
2005-07-23 15:11:19 +04:00
|
|
|
$(top_builddir)/test/support/libsupport.a
|
|
|
|
gpr_threads_DEPENDENCIES = $(gpr_threads_LDADD)
|
2005-04-01 22:02:01 +04:00
|
|
|
|
2005-07-23 15:11:19 +04:00
|
|
|
gpr_triggers_SOURCES = gpr_triggers.c
|
|
|
|
gpr_triggers_LDADD = \
|
2005-08-02 01:45:39 +04:00
|
|
|
$(top_builddir)/orte/liborte.la \
|
|
|
|
$(top_builddir)/opal/libopal.la \
|
2005-07-23 15:11:19 +04:00
|
|
|
$(top_builddir)/test/support/libsupport.a
|
|
|
|
gpr_triggers_DEPENDENCIES = $(gpr_triggers_LDADD)
|
2005-08-02 01:45:39 +04:00
|
|
|
|
|
|
|
gpr_quick_put_SOURCES = gpr_quick_put.c
|
|
|
|
gpr_quick_put_LDADD = \
|
|
|
|
$(top_builddir)/orte/liborte.la \
|
|
|
|
$(top_builddir)/opal/libopal.la \
|
|
|
|
$(top_builddir)/test/support/libsupport.a
|
|
|
|
gpr_quick_put_DEPENDENCIES = $(gpr_quick_put_LDADD)
|
|
|
|
|
|
|
|
gpr_quick_triggers= gpr_quick_triggers.c
|
|
|
|
gpr_quick_triggers_LDADD = \
|
|
|
|
$(top_builddir)/orte/liborte.la \
|
|
|
|
$(top_builddir)/opal/libopal.la \
|
|
|
|
$(top_builddir)/test/support/libsupport.a
|
|
|
|
gpr_quick_triggers_DEPENDENCIES = $(gpr_quick_triggers_LDADD)
|