2005-05-01 00:53:00 +00:00
|
|
|
# -*- makefile -*-
|
2004-08-05 14:01:45 +00:00
|
|
|
#
|
2005-11-05 19:57:48 +00: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 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-05 14:01:45 +00:00
|
|
|
# $HEADER$
|
|
|
|
#
|
|
|
|
|
|
|
|
|
2005-09-24 01:17:32 +00:00
|
|
|
AM_CPPFLAGS = -I$(top_srcdir)/opal/libltdl -I$(top_srcdir)/test/support
|
2005-09-06 10:35:17 +00:00
|
|
|
|
2005-03-22 04:25:01 +00:00
|
|
|
check_PROGRAMS = \
|
2005-05-01 00:53:00 +00:00
|
|
|
test_schema
|
2004-08-05 14:01:45 +00:00
|
|
|
|
2005-03-22 04:25:01 +00:00
|
|
|
TESTS = \
|
|
|
|
$(check_PROGRAMS)
|
|
|
|
|
2005-05-01 00:53:00 +00:00
|
|
|
test_schema_SOURCES = test_schema.c
|
|
|
|
test_schema_LDADD = \
|
|
|
|
$(top_builddir)/test/support/libsupport.a \
|
2006-12-05 18:27:24 +00:00
|
|
|
$(top_builddir)/orte/libopen-rte.la \
|
|
|
|
$(top_builddir)/opal/libopen-pal.la
|
2005-05-01 00:53:00 +00:00
|
|
|
test_schema_DEPENDENCIES = $(test_schema_LDADD)
|