2003-11-22 19:36:58 +03:00
|
|
|
# -*- shell-script -*-
|
|
|
|
#
|
2004-01-07 10:49:23 +03:00
|
|
|
# $HEADER$
|
2003-11-22 19:36:58 +03:00
|
|
|
#
|
|
|
|
|
|
|
|
|
|
|
|
############################################################################
|
|
|
|
# Initialization, version number, and other random setup/init stuff
|
|
|
|
############################################################################
|
|
|
|
|
|
|
|
# Init autoconf
|
|
|
|
|
2004-01-11 00:32:32 +03:00
|
|
|
AC_INIT(./src/mpi/interface/c/init.c)
|
2003-11-22 19:36:58 +03:00
|
|
|
AC_PREREQ(2.52)
|
|
|
|
AC_CONFIG_AUX_DIR(./config)
|
|
|
|
|
2003-12-22 19:29:21 +03:00
|
|
|
# Get the version of LAM that we are installing
|
|
|
|
|
|
|
|
LAM_GET_VERSION($srcdir/config, $srcdir/VERSION, LAM)
|
|
|
|
|
|
|
|
AC_DEFINE_UNQUOTED(LAM_MAJOR_VERSION, $LAM_MAJOR_VERSION,
|
|
|
|
[Major LAM version])
|
|
|
|
AC_DEFINE_UNQUOTED(LAM_MINOR_VERSION, $LAM_MINOR_VERSION,
|
|
|
|
[Minor LAM version])
|
|
|
|
AC_DEFINE_UNQUOTED(LAM_RELEASE_VERSION, $LAM_RELEASE_VERSION,
|
|
|
|
[Release LAM version])
|
|
|
|
AC_DEFINE_UNQUOTED(LAM_ALPHA_VERSION, $LAM_ALPHA_VERSION,
|
|
|
|
[Alpha LAM version])
|
|
|
|
AC_DEFINE_UNQUOTED(LAM_BETA_VERSION, $LAM_BETA_VERSION,
|
|
|
|
[Beta LAM version])
|
|
|
|
AC_DEFINE_UNQUOTED(LAM_CVS_VERSION, $LAM_CVS_VERSION,
|
|
|
|
[CVS LAM version])
|
|
|
|
AC_DEFINE_UNQUOTED(LAM_VERSION, "$LAM_VERSION",
|
|
|
|
[Overall LAM version number])
|
|
|
|
|
|
|
|
AC_SUBST(LAM_MAJOR_VERSION)
|
|
|
|
AC_SUBST(LAM_MINOR_VERSION)
|
|
|
|
AC_SUBST(LAM_RELEASE_VERSION)
|
|
|
|
AC_SUBST(LAM_ALPHA_VERSION)
|
|
|
|
AC_SUBST(LAM_BETA_VERSION)
|
|
|
|
AC_SUBST(LAM_CVS_VERSION)
|
|
|
|
AC_SUBST(LAM_VERSION)
|
2003-11-22 19:36:58 +03:00
|
|
|
|
|
|
|
#
|
|
|
|
# Start it up
|
|
|
|
#
|
|
|
|
|
2003-12-22 19:29:21 +03:00
|
|
|
LAM_CONFIGURE_SETUP
|
|
|
|
lam_show_title "Configuring LAM version $LAM_VERSION"
|
|
|
|
lam_show_subtitle "Initialization, setup"
|
2003-11-22 19:36:58 +03:00
|
|
|
|
|
|
|
#
|
|
|
|
# Init automake
|
|
|
|
# The third argument to AM_INIT_AUTOMAKE surpresses the PACKAGE and
|
|
|
|
# VERSION macors
|
|
|
|
#
|
|
|
|
|
2003-12-22 19:29:21 +03:00
|
|
|
AM_INIT_AUTOMAKE(lam, $LAM_VERSION, 'no')
|
2003-11-22 19:36:58 +03:00
|
|
|
|
2003-12-22 19:29:21 +03:00
|
|
|
LAM_TOP_BUILDDIR="`pwd`"
|
|
|
|
AC_SUBST(LAM_TOP_BUILDDIR)
|
2003-11-22 19:36:58 +03:00
|
|
|
cd "$srcdir"
|
2003-12-22 19:29:21 +03:00
|
|
|
LAM_TOP_SRCDIR="`pwd`"
|
|
|
|
AC_SUBST(LAM_TOP_SRCDIR)
|
|
|
|
cd "$LAM_TOP_BUILDDIR"
|
2003-11-22 19:36:58 +03:00
|
|
|
|
2003-12-22 19:29:21 +03:00
|
|
|
AC_MSG_NOTICE([builddir: $LAM_TOP_BUILDDIR])
|
|
|
|
AC_MSG_NOTICE([srcdir: $LAM_TOP_SRCDIR])
|
|
|
|
if test "$LAM_TOP_BUILDDIR" != "$LAM_TOP_SRCDIR"; then
|
2003-11-22 19:36:58 +03:00
|
|
|
AC_MSG_NOTICE([Detected VPATH build])
|
|
|
|
fi
|
|
|
|
|
2003-12-22 19:29:21 +03:00
|
|
|
# Setup the top of the src/include/lam_config.h file
|
2003-11-22 19:36:58 +03:00
|
|
|
|
|
|
|
AH_TOP([/* -*- c -*-
|
|
|
|
*
|
2004-01-07 17:55:23 +03:00
|
|
|
* $HEADER$
|
2003-11-22 19:36:58 +03:00
|
|
|
*
|
|
|
|
* Function: - OS, CPU and compiler dependent configuration
|
|
|
|
*/
|
|
|
|
|
2003-12-22 19:29:21 +03:00
|
|
|
#ifndef LAM_CONFIG_H
|
|
|
|
#define LAM_CONFIG_H
|
|
|
|
])
|
|
|
|
AH_BOTTOM([
|
2004-01-07 23:48:03 +03:00
|
|
|
#include <lam_config_bottom.h>
|
2003-12-22 19:29:21 +03:00
|
|
|
#endif /* LAM_CONFIG_H */
|
2003-11-22 19:36:58 +03:00
|
|
|
])
|
|
|
|
|
|
|
|
# What kind of machine are we on?
|
|
|
|
|
|
|
|
AC_CANONICAL_HOST
|
|
|
|
|
|
|
|
|
|
|
|
############################################################################
|
|
|
|
# Configuration options
|
|
|
|
############################################################################
|
|
|
|
|
2004-01-07 10:49:23 +03:00
|
|
|
LAM_CONFIGURE_OPTIONS
|
2003-11-22 19:36:58 +03:00
|
|
|
|
|
|
|
|
|
|
|
############################################################################
|
|
|
|
# Libtool: part one
|
|
|
|
# (before C compiler setup)
|
|
|
|
############################################################################
|
|
|
|
|
|
|
|
#
|
|
|
|
# Part one of libtool magic. Enable static so that we have the --with
|
|
|
|
# tests done up here and can check for OS. Save the values of
|
|
|
|
# $enable_static and $enable_shared before setting the defaults,
|
|
|
|
# because if the user specified --[en|dis]able-[static|shared] on the
|
|
|
|
# command line, they'll already be set. In this way, we can tell if
|
|
|
|
# the user requested something or if the default was set here.
|
|
|
|
#
|
|
|
|
|
2003-12-22 19:29:21 +03:00
|
|
|
lam_enable_shared="$enable_shared"
|
|
|
|
lam_enable_static="$enable_static"
|
2003-11-22 19:36:58 +03:00
|
|
|
AM_DISABLE_SHARED
|
|
|
|
AM_ENABLE_STATIC
|
|
|
|
|
|
|
|
|
|
|
|
############################################################################
|
|
|
|
# Check for compilers and preprocessors
|
|
|
|
############################################################################
|
|
|
|
|
|
|
|
##################################
|
|
|
|
# C compiler characteristics
|
|
|
|
##################################
|
|
|
|
|
2004-01-07 10:49:23 +03:00
|
|
|
LAM_SETUP_CC
|
2003-11-22 19:36:58 +03:00
|
|
|
|
|
|
|
# force ANSI prototypes
|
|
|
|
# check for STDC
|
|
|
|
# check for some types
|
2004-01-09 04:17:00 +03:00
|
|
|
AC_CHECK_TYPES(long long)
|
|
|
|
AC_CHECK_TYPES(int8_t)
|
|
|
|
AC_CHECK_TYPES(uint8_t)
|
|
|
|
AC_CHECK_TYPES(int16_t)
|
|
|
|
AC_CHECK_TYPES(uint16_t)
|
|
|
|
AC_CHECK_TYPES(int32_t)
|
|
|
|
AC_CHECK_TYPES(uint32_t)
|
|
|
|
AC_CHECK_TYPES(int64_t)
|
|
|
|
AC_CHECK_TYPES(uint64_t)
|
|
|
|
AC_CHECK_TYPES(intptr_t)
|
|
|
|
AC_CHECK_TYPES(uintptr_t)
|
2003-11-22 19:36:58 +03:00
|
|
|
# check for type sizes
|
2004-01-09 04:17:00 +03:00
|
|
|
AC_CHECK_SIZEOF(char)
|
|
|
|
AC_CHECK_SIZEOF(short)
|
|
|
|
AC_CHECK_SIZEOF(int)
|
|
|
|
AC_CHECK_SIZEOF(long)
|
|
|
|
AC_CHECK_SIZEOF(long long)
|
|
|
|
AC_CHECK_SIZEOF(void *)
|
2003-11-22 19:36:58 +03:00
|
|
|
# check for type alignments
|
2004-01-07 10:49:23 +03:00
|
|
|
|
2003-12-22 19:29:21 +03:00
|
|
|
AC_C_INLINE
|
2004-01-07 22:33:37 +03:00
|
|
|
AC_CHECK_HEADERS(stdbool.h)
|
2004-01-08 16:36:14 +03:00
|
|
|
LAM_C_WEAK_SYMBOLS
|
2003-11-22 19:36:58 +03:00
|
|
|
|
2004-01-08 16:36:14 +03:00
|
|
|
# If we want the profiling layer:
|
|
|
|
# - If the C compiler has weak symbols, use those.
|
|
|
|
# - If not, then set to compile the code again with #define's in a
|
|
|
|
# separate directory.
|
|
|
|
|
|
|
|
if test "$WANT_WEAK_SYMBOLS" = "0"; then
|
|
|
|
LAM_C_HAVE_WEAK_SYMBOLS=1
|
|
|
|
fi
|
|
|
|
if test "$WANT_MPI_PROFILING" = "1"; then
|
|
|
|
if test "$LAM_C_HAVE_WEAK_SYMBOLS" = "1"; then
|
|
|
|
LAM_PROFILING_COMPILE_SEPARATELY=0
|
|
|
|
else
|
|
|
|
LAM_PROFILING_COMPILE_SEPARATELY=1
|
|
|
|
fi
|
|
|
|
else
|
2004-01-08 16:52:27 +03:00
|
|
|
LAM_PROFILING_COMPILE_SEPARATELY=0
|
2004-01-08 16:36:14 +03:00
|
|
|
fi
|
2004-01-08 18:51:54 +03:00
|
|
|
AM_CONDITIONAL(COMPILE_PROFILING_SEPARATELY,
|
|
|
|
test "$LAM_PROFILING_COMPILE_SEPARATELY" = 1)
|
2004-01-08 16:36:14 +03:00
|
|
|
AC_DEFINE_UNQUOTED(LAM_WANT_MPI_PROFILING, $WANT_MPI_PROFILING,
|
2004-01-08 18:51:54 +03:00
|
|
|
[Whether we want MPI profiling or not])
|
2004-01-08 16:36:14 +03:00
|
|
|
AC_DEFINE_UNQUOTED(LAM_HAVE_WEAK_SYMBOLS, $LAM_C_HAVE_WEAK_SYMBOLS,
|
2004-01-08 18:51:54 +03:00
|
|
|
[Wehther we have weak symbols or not])
|
2004-01-08 16:36:14 +03:00
|
|
|
|
2004-01-07 10:49:23 +03:00
|
|
|
|
2003-11-22 19:36:58 +03:00
|
|
|
##################################
|
|
|
|
# C++ compiler characteristics
|
|
|
|
##################################
|
|
|
|
|
2004-01-07 10:49:23 +03:00
|
|
|
LAM_SETUP_CXX
|
2003-11-22 19:36:58 +03:00
|
|
|
|
|
|
|
# check for STL
|
|
|
|
# check for bool (and corresponding C type)
|
|
|
|
# check for true/false
|
|
|
|
# check for type sizes
|
|
|
|
# check for type alignments
|
|
|
|
# check for template repository
|
|
|
|
|
2004-01-07 10:49:23 +03:00
|
|
|
|
2003-11-22 19:36:58 +03:00
|
|
|
##################################
|
|
|
|
# Fortran
|
|
|
|
##################################
|
|
|
|
|
2004-01-08 16:36:14 +03:00
|
|
|
LAM_SETUP_F77
|
2004-01-09 11:25:18 +03:00
|
|
|
if test -n "$F77"; then
|
|
|
|
LAM_F77_FIND_EXT_SYMBOL_CONVENTION($F77)
|
|
|
|
fi
|
|
|
|
|
2004-01-08 16:36:14 +03:00
|
|
|
LAM_SETUP_F90
|
2003-11-22 19:36:58 +03:00
|
|
|
|
|
|
|
|
|
|
|
##################################
|
|
|
|
# Header files
|
|
|
|
##################################
|
|
|
|
|
|
|
|
# snprintf declaration
|
|
|
|
# gethostname declaration
|
|
|
|
# headers:
|
|
|
|
# stropts.h grh.h netinet/tcp.h sys/select.h sys/resource.h pty.h util.h
|
|
|
|
# rpc/types.h rpc/xdr.h sched.h strings.h
|
|
|
|
|
|
|
|
# SA_RESTART in signal.h
|
|
|
|
# sa_len in struct sockaddr
|
|
|
|
# union semun in sys/sem.h
|
|
|
|
|
|
|
|
|
|
|
|
##################################
|
|
|
|
# Libraries
|
|
|
|
##################################
|
|
|
|
|
|
|
|
# -lsocket
|
|
|
|
# -lnsl
|
|
|
|
# -lutil (openpty)
|
|
|
|
# openpty
|
|
|
|
# atexit
|
|
|
|
# getcwd
|
|
|
|
# snprintf
|
|
|
|
# atoll
|
|
|
|
# strtoll
|
|
|
|
# yield
|
|
|
|
# sched_yield
|
|
|
|
# vscanf
|
|
|
|
# va_copy
|
|
|
|
|
|
|
|
##################################
|
|
|
|
# System-specific tests
|
|
|
|
##################################
|
|
|
|
|
2004-01-09 08:32:21 +03:00
|
|
|
lam_show_title "System-specific tests"
|
|
|
|
|
2003-11-22 19:36:58 +03:00
|
|
|
# all: endian
|
|
|
|
# all: SYSV semaphores
|
|
|
|
# all: SYSV shared memory
|
|
|
|
# all: thread flavor
|
|
|
|
# all: size of FD_SET
|
|
|
|
# all: FD passing (or not!!)
|
|
|
|
# all: BSD vs. SYSV ptys
|
|
|
|
# all: sizeof struct stat members
|
|
|
|
# all: type of getsockopt optlen
|
|
|
|
# all: type of recvfrom optlen
|
2004-01-09 08:08:31 +03:00
|
|
|
|
2004-01-09 11:25:18 +03:00
|
|
|
#
|
2004-01-09 08:08:31 +03:00
|
|
|
# File system case sensitivity
|
2004-01-09 11:25:18 +03:00
|
|
|
#
|
2004-01-09 08:08:31 +03:00
|
|
|
|
|
|
|
LAM_CASE_SENSITIVE_FS_SETUP
|
2003-11-22 19:36:58 +03:00
|
|
|
|
|
|
|
# AIX: FIONBIO in sys/ioctl.h
|
|
|
|
# glibc: memcpy
|
|
|
|
|
|
|
|
|
2004-01-12 00:35:37 +03:00
|
|
|
##################################
|
|
|
|
# MCA
|
|
|
|
##################################
|
|
|
|
|
|
|
|
lam_show_title "MPI Component Architecture (MCA) setup"
|
|
|
|
|
|
|
|
AC_MSG_CHECKING([for subdir args])
|
|
|
|
LAM_CONFIG_SUBDIR_ARGS([lam_subdir_args])
|
|
|
|
AC_MSG_RESULT([$lam_subdir_args])
|
|
|
|
|
|
|
|
LAM_MCA
|
|
|
|
|
|
|
|
|
2003-11-22 19:36:58 +03:00
|
|
|
############################################################################
|
|
|
|
# Libtool: part two
|
|
|
|
# (after C compiler setup)
|
|
|
|
############################################################################
|
|
|
|
|
2003-12-22 19:29:21 +03:00
|
|
|
lam_show_title "Libtool configuration"
|
2003-11-22 19:36:58 +03:00
|
|
|
|
|
|
|
AM_PROG_LIBTOOL
|
|
|
|
|
|
|
|
|
|
|
|
############################################################################
|
|
|
|
# final wrapper compiler config
|
|
|
|
############################################################################
|
|
|
|
|
2003-12-22 19:29:21 +03:00
|
|
|
lam_show_title "Final top-level LAM configuration"
|
2003-11-22 19:36:58 +03:00
|
|
|
|
|
|
|
#
|
|
|
|
# This is needed for VPATH builds, so that it will -I the appropriate
|
|
|
|
# include directory (don't know why automake doesn't do this
|
|
|
|
# automatically). We delayed doing it until now just so that
|
|
|
|
# '-I$(top_srcdir)' doesn't show up in any of the configure output --
|
|
|
|
# purely aesthetic.
|
|
|
|
#
|
|
|
|
|
2003-12-22 19:29:21 +03:00
|
|
|
CPPFLAGS='-I$(top_srcdir)/src'" $CPPFLAGS"
|
|
|
|
CXXCPPFLAGS='-I$(top_srcdir)/src'" $CXXCPPFLAGS"
|
2003-11-22 19:36:58 +03:00
|
|
|
|
2004-01-12 10:08:37 +03:00
|
|
|
#
|
|
|
|
# Adding WRAPPER_* flags so that extra flags needed for wrappper compilers
|
|
|
|
#
|
|
|
|
# WRAPPER_EXTRA_CFLAGS
|
|
|
|
#
|
|
|
|
LAM_UNIQ(WRAPPER_EXTRA_CFLAGS)
|
|
|
|
AC_SUBST(WRAPPER_EXTRA_CFLAGS)
|
|
|
|
AC_DEFINE_UNQUOTED(WRAPPER_EXTRA_CFLAGS, "$WRAPPER_EXTRA_CFLAGS",
|
|
|
|
[Additional CFLAGS to pass through the wrapper compilers])
|
|
|
|
|
|
|
|
#
|
|
|
|
# WRAPPER_EXTRA_CXXFLAGS
|
|
|
|
#
|
|
|
|
LAM_UNIQ(WRAPPER_EXTRA_CXXFLAGS)
|
|
|
|
AC_SUBST(WRAPPER_EXTRA_CXXFLAGS)
|
|
|
|
AC_DEFINE_UNQUOTED(WRAPPER_EXTRA_CXXFLAGS, "$WRAPPER_EXTRA_CXXFLAGS",
|
|
|
|
[Additional CXXFLAGS to pass through the wrapper compilers])
|
|
|
|
|
|
|
|
#
|
|
|
|
# WRAPPER_EXTRA_FFLAGS
|
|
|
|
#
|
|
|
|
LAM_UNIQ(WRAPPER_EXTRA_FFLAGS)
|
|
|
|
AC_SUBST(WRAPPER_EXTRA_FFLAGS)
|
|
|
|
AC_DEFINE_UNQUOTED(WRAPPER_EXTRA_FFLAGS, "$WRAPPER_EXTRA_FFLAGS",
|
|
|
|
[Additional FFLAGS to pass through the wrapper compilers])
|
|
|
|
|
|
|
|
#
|
|
|
|
# WRAPPER_EXTRA_LDFLAGS
|
|
|
|
#
|
|
|
|
LAM_UNIQ(WRAPPER_EXTRA_LDFLAGS)
|
|
|
|
AC_SUBST(WRAPPER_EXTRA_LDFLAGS)
|
|
|
|
AC_DEFINE_UNQUOTED(WRAPPER_EXTRA_LDFLAGS, "$WRAPPER_EXTRA_LDFLAGS",
|
|
|
|
[Additional LDFLAGS to pass through the wrapper compilers])
|
|
|
|
|
|
|
|
#
|
|
|
|
# WRAPPER_EXTRA_LIBS
|
|
|
|
#
|
|
|
|
AC_SUBST(WRAPPER_EXTRA_LIBS)
|
|
|
|
AC_DEFINE_UNQUOTED(WRAPPER_EXTRA_LIBS, "$WRAPPER_EXTRA_LIBS",
|
|
|
|
[Additional LIBS to pass through the wrapper compilers])
|
|
|
|
|
2003-11-22 19:36:58 +03:00
|
|
|
#
|
|
|
|
# Delayed the substitution of CFLAGS and CXXFLAGS until now because
|
|
|
|
# they may have been modified throughout the course of this script.
|
|
|
|
#
|
|
|
|
|
|
|
|
AC_SUBST(CFLAGS)
|
|
|
|
AC_SUBST(CPPFLAGS)
|
|
|
|
AC_SUBST(CXXFLAGS)
|
|
|
|
AC_SUBST(CXXCPPFLAGS)
|
|
|
|
AC_SUBST(FFLAGS)
|
|
|
|
|
|
|
|
|
|
|
|
############################################################################
|
|
|
|
# Party on
|
|
|
|
############################################################################
|
|
|
|
|
2003-12-22 19:29:21 +03:00
|
|
|
lam_show_subtitle "Final output"
|
2003-11-22 19:36:58 +03:00
|
|
|
|
2003-12-22 19:29:21 +03:00
|
|
|
AM_CONFIG_HEADER([src/include/lam_config.h])
|
2003-11-22 19:36:58 +03:00
|
|
|
AC_CONFIG_FILES([
|
|
|
|
Makefile
|
|
|
|
|
|
|
|
config/Makefile
|
|
|
|
|
|
|
|
src/Makefile
|
|
|
|
src/include/Makefile
|
2003-11-22 19:57:54 +03:00
|
|
|
|
2003-12-22 19:29:21 +03:00
|
|
|
src/lam/Makefile
|
2004-01-07 21:58:24 +03:00
|
|
|
src/lam/ctnetwork/Makefile
|
2004-01-07 10:49:23 +03:00
|
|
|
src/lam/lfc/Makefile
|
2003-12-22 19:29:21 +03:00
|
|
|
src/lam/mem/Makefile
|
2004-01-07 17:55:23 +03:00
|
|
|
|
2003-12-22 19:29:21 +03:00
|
|
|
src/lam/os/Makefile
|
2004-01-07 17:55:23 +03:00
|
|
|
src/lam/os/cygwin/Makefile
|
|
|
|
src/lam/os/darwin/Makefile
|
2004-01-09 00:42:18 +03:00
|
|
|
src/lam/os/darwin/ppc_32/Makefile
|
2004-01-07 17:55:23 +03:00
|
|
|
src/lam/os/darwin/ppc_64/Makefile
|
|
|
|
src/lam/os/irix/Makefile
|
|
|
|
src/lam/os/irix/sn0/Makefile
|
|
|
|
src/lam/os/linux/Makefile
|
|
|
|
src/lam/os/linux/alpha/Makefile
|
|
|
|
src/lam/os/linux/i686/Makefile
|
|
|
|
src/lam/os/linux/ia64/Makefile
|
|
|
|
src/lam/os/linux/x86_64/Makefile
|
|
|
|
src/lam/os/tru64/Makefile
|
|
|
|
|
2003-12-22 19:29:21 +03:00
|
|
|
src/lam/threads/Makefile
|
|
|
|
src/lam/util/Makefile
|
|
|
|
|
2003-11-22 19:36:58 +03:00
|
|
|
src/mpi/Makefile
|
2004-01-13 02:54:05 +03:00
|
|
|
src/mpi/attribute/Makefile
|
2004-01-11 00:32:32 +03:00
|
|
|
src/mpi/communicator/Makefile
|
|
|
|
src/mpi/datatype/Makefile
|
2004-01-13 02:54:05 +03:00
|
|
|
src/mpi/errhandler/Makefile
|
2004-01-11 03:10:44 +03:00
|
|
|
src/mpi/group/Makefile
|
|
|
|
src/mpi/info/Makefile
|
2004-01-11 00:32:32 +03:00
|
|
|
src/mpi/interface/Makefile
|
|
|
|
src/mpi/interface/c/Makefile
|
|
|
|
src/mpi/interface/c/profile/Makefile
|
|
|
|
src/mpi/interface/cxx/Makefile
|
|
|
|
src/mpi/interface/f77/Makefile
|
|
|
|
src/mpi/interface/f77/profile/Makefile
|
|
|
|
src/mpi/interface/f90/Makefile
|
2004-01-11 03:10:44 +03:00
|
|
|
src/mpi/op/Makefile
|
|
|
|
src/mpi/proc/Makefile
|
|
|
|
src/mpi/request/Makefile
|
2003-11-22 19:57:54 +03:00
|
|
|
|
2004-01-09 00:42:18 +03:00
|
|
|
src/mca/Makefile
|
2004-01-12 00:35:37 +03:00
|
|
|
|
2004-01-09 00:42:18 +03:00
|
|
|
src/mca/lam/Makefile
|
2004-01-12 00:35:37 +03:00
|
|
|
src/mca/lam/base/Makefile
|
|
|
|
src/mca/lam/common_lam/Makefile
|
|
|
|
src/mca/lam/common_lam/base/Makefile
|
2004-01-10 07:44:43 +03:00
|
|
|
src/mca/lam/oob/Makefile
|
|
|
|
src/mca/lam/oob/base/Makefile
|
|
|
|
src/mca/lam/pcm/Makefile
|
|
|
|
src/mca/lam/pcm/base/Makefile
|
|
|
|
src/mca/lam/registry/Makefile
|
|
|
|
src/mca/lam/registry/base/Makefile
|
2004-01-12 00:35:37 +03:00
|
|
|
|
2004-01-09 00:42:18 +03:00
|
|
|
src/mca/mpi/Makefile
|
2004-01-12 00:35:37 +03:00
|
|
|
src/mca/mpi/base/Makefile
|
2004-01-09 00:42:18 +03:00
|
|
|
src/mca/mpi/coll/Makefile
|
2004-01-09 11:25:18 +03:00
|
|
|
src/mca/mpi/coll/base/Makefile
|
2004-01-12 00:35:37 +03:00
|
|
|
src/mca/mpi/common_mpi/Makefile
|
|
|
|
src/mca/mpi/common_mpi/base/Makefile
|
2004-01-09 00:42:18 +03:00
|
|
|
src/mca/mpi/io/Makefile
|
2004-01-09 11:25:18 +03:00
|
|
|
src/mca/mpi/io/base/Makefile
|
2004-01-09 00:42:18 +03:00
|
|
|
src/mca/mpi/one/Makefile
|
2004-01-09 11:25:18 +03:00
|
|
|
src/mca/mpi/one/base/Makefile
|
2004-01-09 00:42:18 +03:00
|
|
|
src/mca/mpi/pml/Makefile
|
2004-01-09 11:25:18 +03:00
|
|
|
src/mca/mpi/pml/base/Makefile
|
2004-01-09 00:42:18 +03:00
|
|
|
src/mca/mpi/ptl/Makefile
|
2004-01-09 11:25:18 +03:00
|
|
|
src/mca/mpi/ptl/base/Makefile
|
2004-01-09 00:42:18 +03:00
|
|
|
src/mca/mpi/topo/Makefile
|
2004-01-09 11:25:18 +03:00
|
|
|
src/mca/mpi/topo/base/Makefile
|
2004-01-09 00:42:18 +03:00
|
|
|
|
2003-11-22 19:36:58 +03:00
|
|
|
src/tools/Makefile
|
|
|
|
src/tools/wrappers/Makefile
|
|
|
|
|
|
|
|
test/Makefile
|
|
|
|
test/unit/Makefile
|
2004-01-11 03:02:06 +03:00
|
|
|
test/unit/lam/Makefile
|
|
|
|
test/unit/lam/oob_cofs/Makefile
|
2003-11-22 19:36:58 +03:00
|
|
|
test/unit/mpi/Makefile
|
|
|
|
test/unit/mpi/communicator/Makefile
|
|
|
|
test/unit/mpi/datatype/Makefile
|
|
|
|
])
|
|
|
|
AC_OUTPUT
|