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$
|
|
|
|
#
|
|
|
|
|
2005-07-23 11:11:19 +00:00
|
|
|
include $(top_srcdir)/test/support/Makefile.options
|
2004-08-06 21:50:32 +00:00
|
|
|
|
2005-03-22 04:25:01 +00:00
|
|
|
check_PROGRAMS = \
|
2005-07-23 11:11:19 +00:00
|
|
|
sigchld \
|
2005-05-22 03:11:33 +00:00
|
|
|
start_shut
|
2004-08-06 21:50:32 +00:00
|
|
|
|
2005-03-22 04:25:01 +00:00
|
|
|
TESTS = \
|
|
|
|
$(check_PROGRAMS)
|
2004-10-08 16:22:35 +00:00
|
|
|
|
2005-03-22 15:24:45 +00:00
|
|
|
sigchld_SOURCES = \
|
|
|
|
sigchld.c
|
|
|
|
sigchld_LDADD = \
|
2005-07-04 14:53:10 +00:00
|
|
|
$(top_builddir)/orte/liborte.la \
|
|
|
|
$(top_builddir)/opal/libopal.la \
|
2005-03-22 15:24:45 +00:00
|
|
|
$(top_builddir)/test/support/libsupport.a
|
|
|
|
sigchld_DEPENDENCIES = $(sigchld_LDADD)
|
2005-05-22 03:11:33 +00:00
|
|
|
|
|
|
|
start_shut_SOURCES = \
|
|
|
|
start_shut.c
|
|
|
|
start_shut_LDADD = \
|
2005-07-04 14:53:10 +00:00
|
|
|
$(top_builddir)/orte/liborte.la \
|
|
|
|
$(top_builddir)/opal/libopal.la \
|
|
|
|
$(top_builddir)/test/support/libsupport.a
|
2005-05-22 03:11:33 +00:00
|
|
|
start_shut_DEPENDENCIES = $(start_shut_LDADD)
|