1
1
openmpi/test/util/Makefile.am
Jeff Squyres 9dab81d86b A bunch of updates to the unit tests
- Update svn:ignore's to match new exectuable names
- Consolidate the unit test Makefile.am flags into a testing
  Makefile.options 
- Remove a bunch of SUBDIRS from test/mca/Makefile so that they don't
  run by default, but can be invoked manually (they're still in
  DIST_SUBDIRS) 

This commit was SVN r6598.
2005-07-23 11:11:19 +00:00

90 строки
2.8 KiB
Makefile

#
# 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.
# Copyright (c) 2004-2005 High Performance Computing Center Stuttgart,
# University of Stuttgart. All rights reserved.
# Copyright (c) 2004-2005 The Regents of the University of California.
# All rights reserved.
# $COPYRIGHT$
#
# Additional copyrights may follow
#
# $HEADER$
#
include $(top_srcdir)/test/support/Makefile.options
check_PROGRAMS = \
ompi_numtostr \
opal_if \
opal_os_path \
orte_sys_info \
opal_os_create_dirpath \
orte_session_dir \
opal_argv \
opal_basename \
orte_universe_setup_file_io
TESTS = \
$(check_PROGRAMS)
ompi_numtostr_SOURCES = ompi_numtostr.c
ompi_numtostr_LDADD = \
$(top_builddir)/opal/libopal.la \
$(top_builddir)/test/support/libsupport.a
ompi_numtostr_DEPENDENCIES = $(ompi_numtostr_LDADD)
opal_if_SOURCES = opal_if.c
opal_if_LDADD = \
$(top_builddir)/opal/libopal.la \
$(top_builddir)/test/support/libsupport.a
opal_if_DEPENDENCIES = $(opal_if_LDADD)
opal_argv_SOURCES = opal_argv.c
opal_argv_LDADD = \
$(top_builddir)/opal/libopal.la \
$(top_builddir)/test/support/libsupport.a
opal_argv_DEPENDENCIES = $(opal_argv_LDADD)
opal_basename_SOURCES = opal_basename.c
opal_basename_LDADD = \
$(top_builddir)/opal/libopal.la \
$(top_builddir)/test/support/libsupport.a
opal_basename_DEPENDENCIES = $(opal_basename_LDADD)
opal_os_path_SOURCES = opal_os_path.c
opal_os_path_LDADD = \
$(top_builddir)/opal/libopal.la \
$(top_builddir)/test/support/libsupport.a
opal_os_path_DEPENDENCIES = $(opal_os_path_LDADD)
orte_sys_info_SOURCES = orte_sys_info.c
orte_sys_info_LDADD = \
$(top_builddir)/opal/libopal.la \
$(top_builddir)/test/support/libsupport.a
orte_sys_info_DEPENDENCIES = $(orte_sys_info_LDADD)
opal_os_create_dirpath_SOURCES = opal_os_create_dirpath.c
opal_os_create_dirpath_LDADD = \
$(top_builddir)/opal/libopal.la \
$(top_builddir)/test/support/libsupport.a
opal_os_create_dirpath_DEPENDENCIES = $(opal_os_create_dirpath_LDADD)
orte_session_dir_SOURCES = orte_session_dir.c
orte_session_dir_LDADD = \
$(top_builddir)/orte/liborte.la \
$(top_builddir)/opal/libopal.la \
$(top_builddir)/test/support/libsupport.a
orte_session_dir_DEPENDENCIES = $(orte_session_dir_LDADD)
orte_universe_setup_file_io_SOURCES = orte_universe_setup_file_io.c
orte_universe_setup_file_io_LDADD = \
$(top_builddir)/orte/liborte.la \
$(top_builddir)/opal/libopal.la \
$(top_builddir)/test/support/libsupport.a
orte_universe_setup_file_io_DEPENDENCIES = $(orte_universe_setup_file_io_LDADD)