2004-08-06 21:50:32 +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-08-06 21:50:32 +00:00
|
|
|
# $HEADER$
|
|
|
|
#
|
|
|
|
|
|
|
|
include $(top_srcdir)/config/Makefile.options
|
2005-04-15 13:32:18 +00:00
|
|
|
AM_CPPFLAGS = -I$(top_srcdir)/test/support
|
2004-08-06 21:50:32 +00:00
|
|
|
|
2005-03-22 04:25:01 +00:00
|
|
|
check_PROGRAMS = \
|
2005-04-01 18:02:01 +00:00
|
|
|
test_rds
|
2004-08-06 21:50:32 +00:00
|
|
|
|
2005-03-22 04:25:01 +00:00
|
|
|
TESTS = \
|
|
|
|
$(check_PROGRAMS)
|
|
|
|
|
2005-04-01 18:02:01 +00:00
|
|
|
test_rds_SOURCES = test_rds.c
|
|
|
|
test_rds_LDADD = \
|
2005-03-22 04:25:01 +00:00
|
|
|
$(top_builddir)/test/support/libsupport.a \
|
2005-03-14 20:57:21 +00:00
|
|
|
$(top_builddir)/src/libmpi.la
|
2005-04-01 18:02:01 +00:00
|
|
|
test_rds_DEPENDENCIES = $(test_rds_LDADD)
|