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.
|
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-03-14 20:57:21 +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-03-22 15:24:45 +00:00
|
|
|
sigchld \
|
2005-03-14 20:57:21 +00:00
|
|
|
parse_context
|
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-14 20:57:21 +00:00
|
|
|
parse_context_SOURCES = \
|
|
|
|
parse_context.c
|
|
|
|
parse_context_LDADD = \
|
|
|
|
$(top_builddir)/src/libmpi.la \
|
2005-03-22 04:25:01 +00:00
|
|
|
$(top_builddir)/test/support/libsupport.a
|
2004-08-06 21:50:32 +00:00
|
|
|
|
2005-03-14 20:57:21 +00:00
|
|
|
parse_context_LDFLAGS = $(LIBMPI_EXTRA_LDFLAGS)
|
|
|
|
parse_context_DEPENDENCIES = $(parse_context_LDADD)
|
2005-03-22 15:24:45 +00:00
|
|
|
|
|
|
|
|
|
|
|
sigchld_SOURCES = \
|
|
|
|
sigchld.c
|
|
|
|
sigchld_LDADD = \
|
|
|
|
$(top_builddir)/src/libmpi.la \
|
|
|
|
$(top_builddir)/test/support/libsupport.a
|
|
|
|
sigchld_DEPENDENCIES = $(sigchld_LDADD)
|