2004-05-24 21:45:00 +00:00
|
|
|
#
|
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-05-24 21:45:00 +00:00
|
|
|
# $HEADER$
|
|
|
|
#
|
|
|
|
|
|
|
|
include $(top_srcdir)/config/Makefile.options
|
2004-10-01 18:38:16 +00:00
|
|
|
AM_CPPFLAGS = -I$(top_srcdir)/test/support -DOMPI_ENABLE_DEBUG_OVERRIDE=1 -g
|
2004-05-24 21:45:00 +00:00
|
|
|
|
|
|
|
noinst_PROGRAMS = \
|
2004-07-14 18:04:31 +00:00
|
|
|
ompi_numtostr \
|
2004-10-31 19:01:53 +00:00
|
|
|
ompi_if \
|
2004-08-12 23:07:21 +00:00
|
|
|
ompi_pack \
|
2004-05-25 21:38:16 +00:00
|
|
|
ompi_os_path \
|
2004-07-14 18:04:31 +00:00
|
|
|
ompi_sys_info \
|
|
|
|
ompi_os_create_dirpath \
|
2004-08-08 02:20:33 +00:00
|
|
|
ompi_session_dir \
|
2004-06-07 15:33:53 +00:00
|
|
|
ompi_argv
|
2004-05-24 21:45:00 +00:00
|
|
|
|
2004-07-14 18:04:31 +00:00
|
|
|
ompi_numtostr_SOURCES = ompi_numtostr.c
|
|
|
|
ompi_numtostr_LDADD = \
|
2004-08-29 02:46:31 +00:00
|
|
|
$(top_builddir)/src/libmpi.la \
|
2004-08-09 21:24:20 +00:00
|
|
|
$(top_builddir)/test/support/libsupport.la
|
2004-07-14 18:04:31 +00:00
|
|
|
ompi_numtostr_DEPENDENCIES = $(ompi_numtostr_LDADD)
|
|
|
|
|
2004-10-31 19:01:53 +00:00
|
|
|
ompi_if_SOURCES = ompi_if.c
|
|
|
|
ompi_if_LDADD = \
|
|
|
|
$(top_builddir)/src/libmpi.la \
|
|
|
|
$(top_builddir)/test/support/libsupport.la
|
|
|
|
ompi_if_DEPENDENCIES = $(ompi_if_LDADD)
|
|
|
|
|
2004-06-07 15:33:53 +00:00
|
|
|
ompi_argv_SOURCES = ompi_argv.c
|
|
|
|
ompi_argv_LDADD = \
|
2004-08-29 02:46:31 +00:00
|
|
|
$(top_builddir)/src/libmpi.la \
|
2004-05-24 21:45:00 +00:00
|
|
|
$(top_builddir)/test/support/libsupport.la
|
2004-06-07 15:33:53 +00:00
|
|
|
ompi_argv_DEPENDENCIES = $(ompi_argv_LDADD)
|
2004-05-24 21:45:00 +00:00
|
|
|
|
2004-05-25 21:38:16 +00:00
|
|
|
ompi_os_path_SOURCES = ompi_os_path.c
|
|
|
|
ompi_os_path_LDADD = \
|
2004-08-29 02:46:31 +00:00
|
|
|
$(top_builddir)/src/libmpi.la \
|
2004-05-25 21:38:16 +00:00
|
|
|
$(top_builddir)/test/support/libsupport.la
|
2004-05-26 02:20:05 +00:00
|
|
|
ompi_os_path_DEPENDENCIES = $(ompi_os_path_LDADD)
|
|
|
|
|
|
|
|
|
|
|
|
ompi_sys_info_SOURCES = ompi_sys_info.c
|
|
|
|
ompi_sys_info_LDADD = \
|
2004-08-29 02:46:31 +00:00
|
|
|
$(top_builddir)/src/libmpi.la \
|
2004-05-26 02:20:05 +00:00
|
|
|
$(top_builddir)/test/support/libsupport.la
|
|
|
|
ompi_sys_info_DEPENDENCIES = $(ompi_sys_info_LDADD)
|
|
|
|
|
|
|
|
ompi_os_create_dirpath_SOURCES = ompi_os_create_dirpath.c
|
|
|
|
ompi_os_create_dirpath_LDADD = \
|
2004-08-29 02:46:31 +00:00
|
|
|
$(top_builddir)/src/libmpi.la \
|
2004-05-26 02:20:05 +00:00
|
|
|
$(top_builddir)/test/support/libsupport.la
|
|
|
|
ompi_os_create_dirpath_DEPENDENCIES = $(ompi_os_create_dirpath_LDADD)
|
2004-08-08 02:20:33 +00:00
|
|
|
|
|
|
|
ompi_session_dir_SOURCES = ompi_session_dir.c
|
|
|
|
ompi_session_dir_LDADD = \
|
|
|
|
$(top_builddir)/src/libmpi.la \
|
|
|
|
$(top_builddir)/test/support/libsupport.la
|
|
|
|
ompi_session_dir_DEPENDENCIES = $(ompi_session_dir_LDADD)
|
2004-08-12 23:07:21 +00:00
|
|
|
|
|
|
|
ompi_pack_SOURCES = ompi_pack.c
|
|
|
|
ompi_pack_LDADD = \
|
|
|
|
$(top_builddir)/src/libmpi.la \
|
|
|
|
$(top_builddir)/test/support/libsupport.la
|
2004-09-09 15:23:41 +00:00
|
|
|
ompi_pack_DEPENDENCIES = $(ompi_pack_LDADD)
|