* update configure.ac to use the modern version of AC_INIT and
AM_INIT_AUTOMAKE, instead of the deprecated version. * Work around dumbness in modern AC_INIT that requires the version number to be set at autoconf time (instead of at configure time, as it was before). Set the version number, minus the subversion r number, at autoconf time. Override the internal variables to include the r number (if needed) at configure time. Basically, the right thing should always happen. The only place it might not is the version reported as part of configure --help will not have an r number. * Since AM_INIT_AUTOMAKE taks a list of options, no need to specify them in all the Makefile.am files. * Addes support for subdir-objects, meaning that object files are put in the directory containing source files, even if the Makefile.am is in another directory. This should start making it feasible to reduce the number of Makefile.am files we have in the tree, which will greatly reduce the time to run autogen and configure. This commit was SVN r7211.
Этот коммит содержится в:
родитель
17f60894c5
Коммит
ed56e743b7
@ -14,7 +14,7 @@
|
||||
# $HEADER$
|
||||
#
|
||||
|
||||
include $(top_srcdir)/config/Makefile.options
|
||||
|
||||
|
||||
SUBDIRS = config include etc contrib $(MCA_PROJECT_SUBDIRS) test
|
||||
EXTRA_DIST = README INSTALL VERSION Doxyfile LICENSE
|
||||
|
@ -14,7 +14,7 @@
|
||||
# $HEADER$
|
||||
#
|
||||
|
||||
include $(top_srcdir)/config/Makefile.options
|
||||
|
||||
|
||||
EXTRA_DIST = \
|
||||
distscript.csh \
|
||||
|
@ -66,6 +66,8 @@ if ("$cur_svn_r" == "-1") then
|
||||
sed -e 's/^svn_r=.*/svn_r='$svn_r'/' VERSION > version.new
|
||||
cp version.new VERSION
|
||||
rm -f version.new
|
||||
# need to reset the timestamp to not annoy AM dependencies
|
||||
touch -r "$srcdir/VERSION" VERSION
|
||||
echo "*** Updated VERSION file with SVN r number"
|
||||
else
|
||||
echo "*** Did NOT updated VERSION file with SVN r number"
|
||||
|
@ -62,16 +62,16 @@ ompi_check_linker_flags_work() {
|
||||
# First make a sample library with the current LDFLAGS and LIBS
|
||||
#
|
||||
|
||||
cmd="$libtool --mode=compile $CC $CFLAGS foo.c -c -o foo.o"
|
||||
cmd="$libtool --mode=compile --tag=CC $CC $CFLAGS foo.c -c -o foo.o"
|
||||
ompi_check_linker_flags_work
|
||||
cmd="$libtool --mode=link $CC $CFLAGS foo.lo $LDFLAGS $LIBS -o libfoo.la"
|
||||
cmd="$libtool --mode=link --tag=CC $CC $CFLAGS foo.lo $LDFLAGS $LIBS -o libfoo.la"
|
||||
ompi_check_linker_flags_work
|
||||
|
||||
#
|
||||
# Now fake linking to it and capture the output from libtool
|
||||
#
|
||||
|
||||
cmd="$libtool --dry-run --mode=link $CC bar.lo libfoo.la -o bar $extra_flags"
|
||||
cmd="$libtool --dry-run --mode=link --tag=CC $CC bar.lo libfoo.la -o bar $extra_flags"
|
||||
ompi_check_linker_flags_work yes
|
||||
|
||||
eval "set $output"
|
||||
|
@ -48,6 +48,8 @@ else
|
||||
OMPI_VERSION="${OMPI_VERSION}b$OMPI_BETA_VERSION"
|
||||
fi
|
||||
|
||||
OMPI_BASE_VERSION="$OMPI_VERSION"
|
||||
|
||||
if test "$OMPI_WANT_SVN" = "1"; then
|
||||
if test "$OMPI_SVN_R" = "-1"; then
|
||||
if test -d .svn; then
|
||||
@ -87,6 +89,9 @@ case "$option" in
|
||||
--svn)
|
||||
echo $OMPI_SVN_R
|
||||
;;
|
||||
--base)
|
||||
echo $OMPI_BASE_VERSION
|
||||
;;
|
||||
--all)
|
||||
echo ${OMPI_VERSION} ${OMPI_MAJOR_VERSION} ${OMPI_MINOR_VERSION} ${OMPI_RELEASE_VERSION} ${OMPI_ALPHA_VERSION} ${OMPI_BETA_VERSION} ${OMPI_SVN_R}
|
||||
;;
|
||||
@ -104,6 +109,7 @@ $0 <srcfile> [<option>]
|
||||
--beta - Beta version nmumber
|
||||
--svn - Subversion repository number
|
||||
--all - Show all version numbers, separated by :
|
||||
--base - Show base version number (no svn number)
|
||||
--help - This message
|
||||
EOF
|
||||
esac
|
||||
|
@ -15,56 +15,60 @@ dnl
|
||||
dnl $HEADER$
|
||||
dnl
|
||||
|
||||
AC_DEFUN([OMPI_SETUP_CC],[
|
||||
AC_DEFUN([_OMPI_START_SETUP_CC],[
|
||||
ompi_show_subtitle "C compiler and preprocessor"
|
||||
|
||||
# Modularize this setup so that sub-configure.in scripts can use this
|
||||
# same setup code.
|
||||
# $%@#!@#% AIX!! This has to be called before anything invokes the C
|
||||
# compiler.
|
||||
dnl AC_AIX
|
||||
])
|
||||
|
||||
ompi_show_subtitle "C compiler and preprocessor"
|
||||
|
||||
# $%@#!@#% AIX!! This has to be called before anything invokes the C
|
||||
# compiler.
|
||||
AC_DEFUN([_OMPI_PROG_CC],[
|
||||
#
|
||||
# Check for the compiler
|
||||
#
|
||||
ompi_cflags_save="$CFLAGS"
|
||||
AC_PROG_CC
|
||||
BASECC="`basename $CC`"
|
||||
CFLAGS="$ompi_cflags_save"
|
||||
AC_DEFINE_UNQUOTED(OMPI_CC, "$CC", [OMPI underlying C compiler])
|
||||
OMPI_CC_ABSOLUTE="`which $CC`"
|
||||
AC_SUBST(OMPI_CC_ABSOLUTE)
|
||||
])
|
||||
|
||||
dnl AC_AIX
|
||||
|
||||
#
|
||||
# Check for the compiler
|
||||
#
|
||||
|
||||
ompi_cflags_save="$CFLAGS"
|
||||
AC_PROG_CC
|
||||
OMPI_CC_ORIGINAL="$CC"
|
||||
BASECC="`basename $CC`"
|
||||
CFLAGS="$ompi_cflags_save"
|
||||
AC_DEFINE_UNQUOTED(OMPI_CC, "$CC", [OMPI underlying C compiler])
|
||||
OMPI_CC_ABSOLUTE="`which $CC`"
|
||||
AC_SUBST(OMPI_CC_ABSOLUTE)
|
||||
|
||||
# Check for compilers that impersonate gcc
|
||||
|
||||
AC_MSG_CHECKING([for compilers that impersonate gcc])
|
||||
msg="not this one!"
|
||||
liar=
|
||||
TRULY_GCC=$GCC
|
||||
if test "$GCC" = "yes"; then
|
||||
AC_TRY_COMPILE([], [
|
||||
AC_DEFUN([_OMPI_PROG_CC_IMPERSONATE_GCC],[
|
||||
# Check for compilers that impersonate gcc
|
||||
AC_CACHE_CHECK([if compiler impersonates gcc],
|
||||
[ompi_cv_prog_cc_impersonate_gcc],
|
||||
[ompi_cv_prog_cc_impersonate_gcc="no"
|
||||
if test "$GCC" = "yes" ; then
|
||||
AC_TRY_COMPILE([], [
|
||||
int i = 3;
|
||||
#if __INTEL_COMPILER
|
||||
#error Yes, I am lying about being gcc.
|
||||
#endif
|
||||
], [], [msg=intel liar=yes])
|
||||
], [], [ompi_cv_prog_cc_impersonate_gcc="yes"])
|
||||
fi])
|
||||
|
||||
# If we made it through unscathed, then it really is gcc
|
||||
if test -z "$liar"; then
|
||||
TRULY_GCC=yes
|
||||
if test "$GCC" = "yes" -a "$ompi_cv_prog_cc_impersonate_gcc" = "no" ; then
|
||||
TRULY_GCC="yes"
|
||||
else
|
||||
TRULY_GCC=no
|
||||
TRULY_GCC="no"
|
||||
fi
|
||||
else
|
||||
# We never thought that this was gcc to begin with
|
||||
TRULY_GCC=no
|
||||
fi
|
||||
AC_MSG_RESULT([$msg])
|
||||
])
|
||||
|
||||
|
||||
AC_DEFUN([OMPI_SETUP_CC],[
|
||||
# Modularize this setup so that sub-configure.in scripts can use this
|
||||
# same setup code.
|
||||
|
||||
# Order is important!
|
||||
AC_REQUIRE([_OMPI_START_SETUP_CC])
|
||||
AC_REQUIRE([_OMPI_PROG_CC])
|
||||
AC_REQUIRE([AM_PROG_CC_C_O])
|
||||
AC_REQUIRE([_OMPI_PROG_CC_IMPERSONATE_GCC])
|
||||
|
||||
# Do we want code coverage
|
||||
if test "$WANT_COVERAGE" = "1"; then
|
||||
|
37
configure.ac
37
configure.ac
@ -22,18 +22,45 @@
|
||||
|
||||
# Init autoconf
|
||||
|
||||
AC_INIT(./ompi/mpi/c/init.c)
|
||||
# We don't have the version number to put in here yet, and we can't
|
||||
# call OMPI_GET_VERSION (etc.) before AC_INIT. So use the shell
|
||||
# version.
|
||||
|
||||
AC_INIT([Open MPI],
|
||||
[m4_normalize(esyscmd([config/ompi_get_version.sh VERSION --base]))],
|
||||
[http://www.open-mpi.org/community/help/], [openmpi])
|
||||
AC_PREREQ(2.58)
|
||||
AC_CONFIG_AUX_DIR(./config)
|
||||
AC_CONFIG_MACRO_DIR(./config)
|
||||
|
||||
# Get our platform support file. This has to be done very, very early
|
||||
# because it twiddles random bits of autoconf
|
||||
OMPI_LOAD_PLATFORM
|
||||
|
||||
#
|
||||
# Init automake
|
||||
#
|
||||
|
||||
AM_INIT_AUTOMAKE([foreign dist-bzip2 subdir-objects no-define])
|
||||
|
||||
# now that we're inited, must make configure depend on the VERSION file
|
||||
AC_SUBST([CONFIGURE_DEPENDENCIES], ['$(top_srcdir)/VERSION'])
|
||||
|
||||
# Get the version of OMPI that we are installing
|
||||
|
||||
OMPI_GET_VERSION($srcdir/VERSION, OMPI)
|
||||
|
||||
# override/fixup the version numbers set by AC_INIT, since on
|
||||
# developer builds, there's no good way to know what the version is
|
||||
# before running configure :(. We only use the base version number
|
||||
# (ie, no svn r numbers) for the version set in AC_INIT. This will
|
||||
# always match reality because we add the VERSION file (the only way
|
||||
# to change the major.minor.release{alpha,beta}) into the configure
|
||||
# dependencies.
|
||||
PACKAGE_VERSION="$OMPI_VERSION"
|
||||
PACKAGE_STRING="${PACKAGE_NAME} ${PACKAGE_VERSION}"
|
||||
VERSION="${PACKAGE_VERSION}"
|
||||
|
||||
AC_SUBST(OMPI_MAJOR_VERSION)
|
||||
AC_SUBST(OMPI_MINOR_VERSION)
|
||||
AC_SUBST(OMPI_RELEASE_VERSION)
|
||||
@ -147,14 +174,6 @@ AC_MSG_RESULT([$OPAL_SVN_R])
|
||||
|
||||
ompi_show_subtitle "Initialization, setup"
|
||||
|
||||
#
|
||||
# Init automake
|
||||
# The third argument to AM_INIT_AUTOMAKE surpresses the PACKAGE and
|
||||
# VERSION macors
|
||||
#
|
||||
|
||||
AM_INIT_AUTOMAKE(openmpi, $OMPI_VERSION, 'no')
|
||||
|
||||
#
|
||||
# GNU C and autotools are inconsistent about whether this is defined
|
||||
# so let's make it true everywhere for now...
|
||||
|
@ -14,7 +14,7 @@
|
||||
# $HEADER$
|
||||
#
|
||||
|
||||
include $(top_srcdir)/config/Makefile.options
|
||||
|
||||
|
||||
EXTRA_DIST = \
|
||||
dist/make_dist_tarball \
|
||||
|
@ -14,6 +14,6 @@
|
||||
# $HEADER$
|
||||
#
|
||||
|
||||
include $(top_srcdir)/config/Makefile.options
|
||||
|
||||
|
||||
SUBDIRS = user install
|
||||
|
@ -14,7 +14,7 @@
|
||||
# $HEADER$
|
||||
#
|
||||
|
||||
include $(top_srcdir)/config/Makefile.options
|
||||
|
||||
|
||||
# The majority of stuff to build the PS/PDF files are included in a
|
||||
# separate Makefile so that they can be invoked directly at "make
|
||||
|
@ -14,7 +14,7 @@
|
||||
# $HEADER$
|
||||
#
|
||||
|
||||
include $(top_srcdir)/config/Makefile.options
|
||||
|
||||
|
||||
ompi_config_files = \
|
||||
openmpi-default-hostfile \
|
||||
|
@ -14,7 +14,7 @@
|
||||
# $HEADER$
|
||||
#
|
||||
|
||||
include $(top_srcdir)/config/Makefile.options
|
||||
|
||||
|
||||
dist_noinst_HEADERS = \
|
||||
orte_config.h \
|
||||
|
@ -14,7 +14,7 @@
|
||||
# $HEADER$
|
||||
#
|
||||
|
||||
include $(top_srcdir)/config/Makefile.options
|
||||
|
||||
|
||||
# Include Windows only files in dist
|
||||
WIN32_FILES = win32/ompi_declspec.h \
|
||||
|
@ -14,7 +14,7 @@
|
||||
# $HEADER$
|
||||
#
|
||||
|
||||
include $(top_srcdir)/config/Makefile.options
|
||||
|
||||
|
||||
noinst_LTLIBRARIES = libattribute.la
|
||||
|
||||
|
@ -15,7 +15,7 @@
|
||||
# $HEADER$
|
||||
#
|
||||
|
||||
include $(top_srcdir)/config/Makefile.options
|
||||
|
||||
|
||||
noinst_LTLIBRARIES = libclass.la
|
||||
|
||||
|
@ -15,7 +15,7 @@
|
||||
# $HEADER$
|
||||
#
|
||||
|
||||
include $(top_srcdir)/config/Makefile.options
|
||||
|
||||
|
||||
noinst_LTLIBRARIES = libcommunicator.la
|
||||
|
||||
|
@ -15,7 +15,7 @@
|
||||
# $HEADER$
|
||||
#
|
||||
|
||||
include $(top_srcdir)/config/Makefile.options
|
||||
|
||||
|
||||
noinst_LTLIBRARIES = libdatatype.la
|
||||
|
||||
|
@ -14,6 +14,6 @@
|
||||
# $HEADER$
|
||||
#
|
||||
|
||||
include $(top_srcdir)/config/Makefile.options
|
||||
|
||||
|
||||
SUBDIRS = $(MCA_ompi_FRAMEWORKS)
|
||||
|
@ -14,7 +14,7 @@
|
||||
# $HEADER$
|
||||
#
|
||||
|
||||
include $(top_srcdir)/config/Makefile.options
|
||||
|
||||
|
||||
SUBDIRS = $(MCA_allocator_DSO_SUBDIRS)
|
||||
DISTCLEANFILES = $(SUBDIRS)
|
||||
|
@ -14,7 +14,7 @@
|
||||
# $HEADER$
|
||||
#
|
||||
|
||||
include $(top_srcdir)/config/Makefile.options
|
||||
|
||||
|
||||
SUBDIRS = $(MCA_bml_DSO_SUBDIRS)
|
||||
DISTCLEANFILES = $(SUBDIRS)
|
||||
|
@ -14,7 +14,7 @@
|
||||
# $HEADER$
|
||||
#
|
||||
|
||||
include $(top_srcdir)/config/Makefile.options
|
||||
|
||||
|
||||
SUBDIRS = $(MCA_btl_DSO_SUBDIRS)
|
||||
DISTCLEANFILES = $(SUBDIRS)
|
||||
|
@ -14,7 +14,7 @@
|
||||
# $HEADER$
|
||||
#
|
||||
|
||||
include $(top_srcdir)/config/Makefile.options
|
||||
|
||||
|
||||
SUBDIRS = $(MCA_coll_DSO_SUBDIRS)
|
||||
DISTCLEANFILES = $(SUBDIRS)
|
||||
|
@ -14,7 +14,7 @@
|
||||
# $HEADER$
|
||||
#
|
||||
|
||||
include $(top_srcdir)/config/Makefile.options
|
||||
|
||||
|
||||
SUBDIRS = $(MCA_common_DSO_SUBDIRS)
|
||||
DISTCLEANFILES = $(SUBDIRS)
|
||||
|
@ -14,7 +14,7 @@
|
||||
# $HEADER$
|
||||
#
|
||||
|
||||
include $(top_srcdir)/config/Makefile.options
|
||||
|
||||
|
||||
SUBDIRS = $(MCA_io_DSO_SUBDIRS)
|
||||
DISTCLEANFILES = $(SUBDIRS)
|
||||
|
@ -14,7 +14,7 @@
|
||||
# $HEADER$
|
||||
#
|
||||
|
||||
include $(top_srcdir)/config/Makefile.options
|
||||
|
||||
|
||||
SUBDIRS = $(MCA_mpool_DSO_SUBDIRS)
|
||||
DISTCLEANFILES = $(SUBDIRS)
|
||||
|
@ -14,7 +14,7 @@
|
||||
# $HEADER$
|
||||
#
|
||||
|
||||
include $(top_srcdir)/config/Makefile.options
|
||||
|
||||
|
||||
SUBDIRS = $(MCA_pml_DSO_SUBDIRS)
|
||||
DISTCLEANFILES = $(SUBDIRS)
|
||||
|
@ -14,7 +14,7 @@
|
||||
# $HEADER$
|
||||
#
|
||||
|
||||
include $(top_srcdir)/config/Makefile.options
|
||||
|
||||
|
||||
SUBDIRS = $(MCA_ptl_DSO_SUBDIRS)
|
||||
DISTCLEANFILES = $(SUBDIRS)
|
||||
|
@ -14,7 +14,7 @@
|
||||
# $HEADER$
|
||||
#
|
||||
|
||||
include $(top_srcdir)/config/Makefile.options
|
||||
|
||||
|
||||
SUBDIRS = $(MCA_topo_DSO_SUBDIRS)
|
||||
DISTCLEANFILES = $(SUBDIRS)
|
||||
|
@ -15,7 +15,7 @@
|
||||
# $HEADER$
|
||||
#
|
||||
|
||||
include $(top_srcdir)/config/Makefile.options
|
||||
|
||||
|
||||
noinst_LTLIBRARIES = liberrhandler.la
|
||||
|
||||
|
@ -14,7 +14,7 @@
|
||||
# $HEADER$
|
||||
#
|
||||
|
||||
include $(top_srcdir)/config/Makefile.options
|
||||
|
||||
|
||||
noinst_LTLIBRARIES = libfile.la
|
||||
|
||||
|
@ -15,7 +15,7 @@
|
||||
# $HEADER$
|
||||
#
|
||||
|
||||
include $(top_srcdir)/config/Makefile.options
|
||||
|
||||
|
||||
noinst_LTLIBRARIES = libgroup.la
|
||||
|
||||
|
@ -14,7 +14,7 @@
|
||||
# $HEADER$
|
||||
#
|
||||
|
||||
include $(top_srcdir)/config/Makefile.options
|
||||
|
||||
|
||||
noinst_HEADERS = \
|
||||
constants.h \
|
||||
|
@ -15,7 +15,7 @@
|
||||
# $HEADER$
|
||||
#
|
||||
|
||||
include $(top_srcdir)/config/Makefile.options
|
||||
|
||||
|
||||
noinst_LTLIBRARIES = libinfo.la
|
||||
|
||||
|
@ -14,7 +14,7 @@
|
||||
# $HEADER$
|
||||
#
|
||||
|
||||
include $(top_srcdir)/config/Makefile.options
|
||||
|
||||
|
||||
EXTRA_DIST = win_makefile
|
||||
|
||||
|
@ -14,7 +14,7 @@
|
||||
# $HEADER$
|
||||
#
|
||||
|
||||
include $(top_srcdir)/config/Makefile.options
|
||||
|
||||
|
||||
SUBDIRS = base $(MCA_allocator_STATIC_SUBDIRS)
|
||||
DIST_SUBDIRS = base $(MCA_allocator_ALL_SUBDIRS)
|
||||
|
@ -14,7 +14,7 @@
|
||||
# $HEADER$
|
||||
#
|
||||
|
||||
include $(top_srcdir)/config/Makefile.options
|
||||
|
||||
|
||||
noinst_LTLIBRARIES = libmca_allocator_base.la
|
||||
|
||||
|
@ -16,7 +16,7 @@
|
||||
|
||||
# Use the top-level Makefile.options
|
||||
|
||||
include $(top_ompi_srcdir)/config/Makefile.options
|
||||
|
||||
|
||||
sources = \
|
||||
allocator_basic.c \
|
||||
|
@ -16,7 +16,7 @@
|
||||
|
||||
# Use the top-level Makefile.options
|
||||
|
||||
include $(top_ompi_srcdir)/config/Makefile.options
|
||||
|
||||
|
||||
sources = \
|
||||
allocator_bucket.c \
|
||||
|
@ -14,7 +14,7 @@
|
||||
# $HEADER$
|
||||
#
|
||||
|
||||
include $(top_srcdir)/config/Makefile.options
|
||||
|
||||
|
||||
SUBDIRS = base $(MCA_bml_STATIC_SUBDIRS)
|
||||
DIST_SUBDIRS = base $(MCA_bml_ALL_SUBDIRS)
|
||||
|
@ -14,7 +14,7 @@
|
||||
# $HEADER$
|
||||
#
|
||||
|
||||
include $(top_srcdir)/config/Makefile.options
|
||||
|
||||
|
||||
noinst_LTLIBRARIES = libmca_bml_base.la
|
||||
|
||||
|
@ -14,7 +14,7 @@
|
||||
# $HEADER$
|
||||
#
|
||||
|
||||
include $(top_ompi_srcdir)/config/Makefile.options
|
||||
|
||||
|
||||
r2_sources = \
|
||||
bml_r2.c \
|
||||
|
@ -14,7 +14,7 @@
|
||||
# $HEADER$
|
||||
#
|
||||
|
||||
include $(top_srcdir)/config/Makefile.options
|
||||
|
||||
|
||||
SUBDIRS = base $(MCA_btl_STATIC_SUBDIRS)
|
||||
DIST_SUBDIRS = base $(MCA_btl_ALL_SUBDIRS)
|
||||
|
@ -14,7 +14,6 @@
|
||||
# $HEADER$
|
||||
#
|
||||
|
||||
include $(top_srcdir)/config/Makefile.options
|
||||
|
||||
AM_CPPFLAGS = $(OPAL_LTDL_CPPFLAGS)
|
||||
|
||||
|
@ -16,7 +16,7 @@
|
||||
|
||||
# Use the top-level Makefile.options
|
||||
|
||||
include $(top_ompi_srcdir)/config/Makefile.options
|
||||
|
||||
|
||||
AM_CPPFLAGS = $(btl_gm_CPPFLAGS)
|
||||
|
||||
|
@ -16,7 +16,7 @@
|
||||
|
||||
# Use the top-level Makefile.options
|
||||
|
||||
include $(top_ompi_srcdir)/config/Makefile.options
|
||||
|
||||
|
||||
CFLAGS = $(btl_mvapi_CFLAGS)
|
||||
AM_CPPFLAGS = $(btl_mvapi_CPPFLAGS)
|
||||
|
@ -16,7 +16,7 @@
|
||||
|
||||
# Use the top-level Makefile.options
|
||||
|
||||
include $(top_ompi_srcdir)/config/Makefile.options
|
||||
|
||||
|
||||
AM_CPPFLAGS = $(btl_mx_CPPFLAGS)
|
||||
|
||||
|
@ -16,7 +16,7 @@
|
||||
|
||||
# Use the top-level Makefile.options
|
||||
|
||||
include $(top_ompi_srcdir)/config/Makefile.options
|
||||
|
||||
|
||||
AM_CPPFLAGS=$(btl_openib_CPPFLAGS)
|
||||
|
||||
|
@ -16,7 +16,7 @@
|
||||
|
||||
# Use the top-level Makefile.options
|
||||
|
||||
include $(top_ompi_srcdir)/config/Makefile.options
|
||||
|
||||
|
||||
# Make the output library in this directory, and name it either
|
||||
# mca_<type>_<name>.la (for DSO builds) or libmca_<type>_<name>.la
|
||||
|
@ -16,7 +16,7 @@
|
||||
|
||||
# Use the top-level Makefile.options
|
||||
|
||||
include $(top_ompi_srcdir)/config/Makefile.options
|
||||
|
||||
|
||||
libmca_btl_self_la_sources = \
|
||||
btl_self.c \
|
||||
|
@ -16,7 +16,7 @@
|
||||
|
||||
# Use the top-level Makefile.options
|
||||
|
||||
include $(top_ompi_srcdir)/config/Makefile.options
|
||||
|
||||
|
||||
libmca_btl_sm_la_sources = \
|
||||
btl_sm.c \
|
||||
|
@ -16,7 +16,7 @@
|
||||
|
||||
# Use the top-level Makefile.options
|
||||
|
||||
include $(top_ompi_srcdir)/config/Makefile.options
|
||||
|
||||
|
||||
sources = \
|
||||
btl_tcp.c \
|
||||
|
@ -16,7 +16,7 @@
|
||||
|
||||
# Use the top-level Makefile.options
|
||||
|
||||
include $(top_ompi_srcdir)/config/Makefile.options
|
||||
|
||||
|
||||
sources = \
|
||||
btl_template.c \
|
||||
|
@ -14,7 +14,7 @@
|
||||
# $HEADER$
|
||||
#
|
||||
|
||||
include $(top_srcdir)/config/Makefile.options
|
||||
|
||||
|
||||
SUBDIRS = base $(MCA_coll_STATIC_SUBDIRS)
|
||||
DIST_SUBDIRS = base $(MCA_coll_ALL_SUBDIRS)
|
||||
|
@ -14,7 +14,7 @@
|
||||
# $HEADER$
|
||||
#
|
||||
|
||||
include $(top_srcdir)/config/Makefile.options
|
||||
|
||||
|
||||
EXTRA_DIST = $(pkgdata_DATA)
|
||||
|
||||
|
@ -16,7 +16,7 @@
|
||||
|
||||
# Use the top-level Makefile.options
|
||||
|
||||
include $(top_ompi_srcdir)/config/Makefile.options
|
||||
|
||||
|
||||
sources = \
|
||||
coll_basic.h \
|
||||
|
@ -16,7 +16,7 @@
|
||||
|
||||
# Use the top-level Makefile.options
|
||||
|
||||
include $(top_ompi_srcdir)/config/Makefile.options
|
||||
|
||||
|
||||
sources = \
|
||||
coll_self.h \
|
||||
|
@ -14,9 +14,6 @@
|
||||
# $HEADER$
|
||||
#
|
||||
|
||||
# Use the top-level Makefile.options
|
||||
|
||||
include $(top_ompi_srcdir)/config/Makefile.options
|
||||
|
||||
not_used_yet = \
|
||||
coll_sm_allgather.c \
|
||||
|
@ -14,7 +14,7 @@
|
||||
# $HEADER$
|
||||
#
|
||||
|
||||
include $(top_srcdir)/config/Makefile.options
|
||||
|
||||
|
||||
SUBDIRS = $(MCA_common_STATIC_SUBDIRS)
|
||||
DIST_SUBDIRS = $(MCA_common_ALL_SUBDIRS)
|
||||
|
@ -38,7 +38,7 @@
|
||||
|
||||
# Use the top-level Makefile.options
|
||||
|
||||
include $(top_ompi_srcdir)/config/Makefile.options
|
||||
|
||||
|
||||
# Header files
|
||||
|
||||
|
@ -14,7 +14,7 @@
|
||||
# $HEADER$
|
||||
#
|
||||
|
||||
include $(top_srcdir)/config/Makefile.options
|
||||
|
||||
|
||||
SUBDIRS = base $(MCA_io_STATIC_SUBDIRS)
|
||||
DIST_SUBDIRS = base $(MCA_io_ALL_SUBDIRS)
|
||||
|
@ -14,7 +14,6 @@
|
||||
# $HEADER$
|
||||
#
|
||||
|
||||
include $(top_srcdir)/config/Makefile.options
|
||||
|
||||
AM_CPPFLAGS = $(OPAL_LTDL_CPPFLAGS)
|
||||
|
||||
|
@ -16,7 +16,7 @@
|
||||
|
||||
# Use the top-level Makefile.options
|
||||
|
||||
include $(top_ompi_srcdir)/config/Makefile.options
|
||||
|
||||
|
||||
sources =
|
||||
include src/Makefile.extra
|
||||
|
@ -14,7 +14,7 @@
|
||||
# $HEADER$
|
||||
#
|
||||
|
||||
include $(top_srcdir)/config/Makefile.options
|
||||
|
||||
|
||||
SUBDIRS = base $(MCA_mpool_STATIC_SUBDIRS)
|
||||
DIST_SUBDIRS = base $(MCA_mpool_ALL_SUBDIRS)
|
||||
|
@ -14,7 +14,7 @@
|
||||
# $HEADER$
|
||||
#
|
||||
|
||||
include $(top_srcdir)/config/Makefile.options
|
||||
|
||||
|
||||
noinst_LTLIBRARIES = libmca_mpool_base.la
|
||||
|
||||
|
@ -16,7 +16,7 @@
|
||||
|
||||
# Use the top-level Makefile.options
|
||||
|
||||
include $(top_ompi_srcdir)/config/Makefile.options
|
||||
|
||||
|
||||
AM_CPPFLAGS = $(mpool_gm_CPPFLAGS)
|
||||
|
||||
|
@ -16,7 +16,7 @@
|
||||
|
||||
# Use the top-level Makefile.options
|
||||
|
||||
include $(top_ompi_srcdir)/config/Makefile.options
|
||||
|
||||
|
||||
CFLAGS = $(mpool_mvapi_CFLAGS)
|
||||
AM_CPPFLAGS = $(mpool_mvapi_CPPFLAGS)
|
||||
|
@ -16,7 +16,7 @@
|
||||
|
||||
# Use the top-level Makefile.options
|
||||
|
||||
include $(top_ompi_srcdir)/config/Makefile.options
|
||||
|
||||
|
||||
AM_CPPFLAGS = $(mpool_openib_CPPFLAGS)
|
||||
|
||||
|
@ -16,7 +16,7 @@
|
||||
|
||||
# Use the top-level Makefile.options
|
||||
|
||||
include $(top_ompi_srcdir)/config/Makefile.options
|
||||
|
||||
|
||||
sources = \
|
||||
mpool_sm.h \
|
||||
|
@ -14,7 +14,7 @@
|
||||
# $HEADER$
|
||||
#
|
||||
|
||||
include $(top_srcdir)/config/Makefile.options
|
||||
|
||||
|
||||
SUBDIRS = base $(MCA_pml_STATIC_SUBDIRS)
|
||||
DIST_SUBDIRS = base $(MCA_pml_ALL_SUBDIRS)
|
||||
|
@ -14,7 +14,7 @@
|
||||
# $HEADER$
|
||||
#
|
||||
|
||||
include $(top_srcdir)/config/Makefile.options
|
||||
|
||||
|
||||
noinst_LTLIBRARIES = libmca_pml_base.la
|
||||
|
||||
|
@ -14,7 +14,7 @@
|
||||
|
||||
# Use the top-level Makefile.options
|
||||
|
||||
include $(top_ompi_srcdir)/config/Makefile.options
|
||||
|
||||
|
||||
# Make the output library in this directory, and name it either
|
||||
# mca_<type>_<name>.la (for DSO builds) or libmca_<type>_<name>.la
|
||||
|
@ -14,7 +14,7 @@
|
||||
# $HEADER$
|
||||
#
|
||||
|
||||
include $(top_ompi_srcdir)/config/Makefile.options
|
||||
|
||||
|
||||
ob1_sources = \
|
||||
pml_ob1.c \
|
||||
|
@ -14,7 +14,7 @@
|
||||
# $HEADER$
|
||||
#
|
||||
|
||||
include $(top_ompi_srcdir)/config/Makefile.options
|
||||
|
||||
|
||||
teg_sources = \
|
||||
pml_teg.c \
|
||||
|
@ -16,7 +16,7 @@
|
||||
|
||||
# Use the top-level Makefile.options
|
||||
|
||||
include $(top_ompi_srcdir)/config/Makefile.options
|
||||
|
||||
|
||||
# Make the output library in this directory, and name it either
|
||||
# mca_<type>_<name>.la (for DSO builds) or libmca_<type>_<name>.la
|
||||
|
@ -14,7 +14,7 @@
|
||||
# $HEADER$
|
||||
#
|
||||
|
||||
include $(top_srcdir)/config/Makefile.options
|
||||
|
||||
|
||||
SUBDIRS = base $(MCA_ptl_STATIC_SUBDIRS)
|
||||
DIST_SUBDIRS = base $(MCA_ptl_ALL_SUBDIRS)
|
||||
|
@ -14,7 +14,7 @@
|
||||
# $HEADER$
|
||||
#
|
||||
|
||||
include $(top_srcdir)/config/Makefile.options
|
||||
|
||||
|
||||
noinst_LTLIBRARIES = libmca_ptl_base.la
|
||||
|
||||
|
@ -16,7 +16,7 @@
|
||||
|
||||
# Use the top-level Makefile.options
|
||||
|
||||
include $(top_ompi_srcdir)/config/Makefile.options
|
||||
|
||||
|
||||
AM_CPPFLAGS = $(ptl_mx_CPPFLAGS)
|
||||
|
||||
|
@ -16,7 +16,7 @@
|
||||
|
||||
# Use the top-level Makefile.options
|
||||
|
||||
include $(top_ompi_srcdir)/config/Makefile.options
|
||||
|
||||
|
||||
# Make the output library in this directory, and name it either
|
||||
# mca_<type>_<name>.la (for DSO builds) or libmca_<type>_<name>.la
|
||||
|
@ -16,7 +16,7 @@
|
||||
|
||||
# Use the top-level OpenMPI Makefile.options
|
||||
|
||||
include $(top_ompi_srcdir)/config/Makefile.options
|
||||
|
||||
|
||||
# According to the MCA spec, we have to make the output library here
|
||||
# in the top-level directory, and it has to be named
|
||||
|
@ -16,7 +16,7 @@
|
||||
|
||||
# Use the top-level Makefile.options
|
||||
|
||||
include $(top_ompi_srcdir)/config/Makefile.options
|
||||
|
||||
|
||||
# Make the output library in this directory, and name it either
|
||||
# mca_<type>_<name>.la (for DSO builds) or libmca_<type>_<name>.la
|
||||
|
@ -16,7 +16,7 @@
|
||||
|
||||
# Use the top-level Makefile.options
|
||||
|
||||
include $(top_ompi_srcdir)/config/Makefile.options
|
||||
|
||||
|
||||
# Make the output library in this directory, and name it either
|
||||
# mca_<type>_<name>.la (for DSO builds) or libmca_<type>_<name>.la
|
||||
|
@ -16,7 +16,7 @@
|
||||
|
||||
# Use the top-level Makefile.options
|
||||
|
||||
include $(top_ompi_srcdir)/config/Makefile.options
|
||||
|
||||
|
||||
sources = \
|
||||
ptl_tcp.c \
|
||||
|
@ -14,7 +14,7 @@
|
||||
# $HEADER$
|
||||
#
|
||||
|
||||
include $(top_srcdir)/config/Makefile.options
|
||||
|
||||
|
||||
SUBDIRS = base $(MCA_topo_STATIC_SUBDIRS)
|
||||
DIST_SUBDIRS = base $(MCA_topo_ALL_SUBDIRS)
|
||||
|
@ -14,7 +14,6 @@
|
||||
# $HEADER$
|
||||
#
|
||||
|
||||
include $(top_srcdir)/config/Makefile.options
|
||||
|
||||
AM_CPPFLAGS = $(OPAL_LTDL_CPPFLAGS)
|
||||
|
||||
|
@ -16,7 +16,7 @@
|
||||
|
||||
# Use the top-level Makefile.options
|
||||
|
||||
include $(top_ompi_srcdir)/config/Makefile.options
|
||||
|
||||
|
||||
sources = \
|
||||
topo_unity.h \
|
||||
|
@ -14,6 +14,6 @@
|
||||
# $HEADER$
|
||||
#
|
||||
|
||||
include $(top_srcdir)/config/Makefile.options
|
||||
|
||||
|
||||
SUBDIRS = c cxx f77 f90
|
||||
|
@ -14,7 +14,7 @@
|
||||
# $HEADER$
|
||||
#
|
||||
|
||||
include $(top_srcdir)/config/Makefile.options
|
||||
|
||||
|
||||
SUBDIRS = profile
|
||||
|
||||
|
@ -15,7 +15,7 @@
|
||||
# $HEADER$
|
||||
#
|
||||
|
||||
include $(top_srcdir)/config/Makefile.options
|
||||
|
||||
#
|
||||
# OMPI_PROFILING_DEFINES flag s enabled when we want our MPI_* symbols
|
||||
# to be replaced by PMPI_*. In other words, this flag decides
|
||||
|
@ -15,7 +15,7 @@
|
||||
# $HEADER$
|
||||
#
|
||||
|
||||
include $(top_srcdir)/config/Makefile.options
|
||||
|
||||
|
||||
if WANT_MPI_CXX_BINDINGS
|
||||
|
||||
|
@ -14,7 +14,7 @@
|
||||
# $HEADER$
|
||||
#
|
||||
|
||||
include $(top_srcdir)/config/Makefile.options
|
||||
|
||||
|
||||
SUBDIRS = profile
|
||||
|
||||
|
@ -15,7 +15,7 @@
|
||||
# $HEADER$
|
||||
#
|
||||
|
||||
include $(top_srcdir)/config/Makefile.options
|
||||
|
||||
#
|
||||
# OMPI_PROFILING_DEFINES flag is enabled when we want our MPI_* symbols
|
||||
# to be replaced by PMPI_*. In other words, this flag decides
|
||||
|
@ -47,7 +47,7 @@
|
||||
# Once you understand this diagram, this Makefile is much more clear.
|
||||
#
|
||||
|
||||
include $(top_srcdir)/config/Makefile.options
|
||||
|
||||
|
||||
SUBDIRS = scripts
|
||||
|
||||
|
@ -15,7 +15,7 @@
|
||||
# $HEADER$
|
||||
#
|
||||
|
||||
include $(top_srcdir)/config/Makefile.options
|
||||
|
||||
|
||||
noinst_SCRIPTS = \
|
||||
mpi-f90-interfaces.h.sh \
|
||||
|
@ -15,7 +15,7 @@
|
||||
# $HEADER$
|
||||
#
|
||||
|
||||
include $(top_srcdir)/config/Makefile.options
|
||||
|
||||
|
||||
noinst_LTLIBRARIES = libop.la
|
||||
|
||||
|
@ -15,7 +15,7 @@
|
||||
# $HEADER$
|
||||
#
|
||||
|
||||
include $(top_srcdir)/config/Makefile.options
|
||||
|
||||
|
||||
noinst_LTLIBRARIES = libproc.la
|
||||
|
||||
|
@ -15,7 +15,7 @@
|
||||
# $HEADER$
|
||||
#
|
||||
|
||||
include $(top_srcdir)/config/Makefile.options
|
||||
|
||||
|
||||
noinst_LTLIBRARIES = librequest.la
|
||||
|
||||
|
@ -14,7 +14,7 @@
|
||||
# $HEADER$
|
||||
#
|
||||
|
||||
include $(top_srcdir)/config/Makefile.options
|
||||
|
||||
|
||||
AM_CPPFLAGS = -I$(top_builddir)/src/event
|
||||
|
||||
|
@ -15,7 +15,7 @@
|
||||
# $HEADER$
|
||||
#
|
||||
|
||||
include $(top_srcdir)/config/Makefile.options
|
||||
|
||||
|
||||
EXTRA_DIST = win_makefile
|
||||
|
||||
|
@ -14,7 +14,7 @@
|
||||
# $HEADER$
|
||||
#
|
||||
|
||||
include $(top_srcdir)/config/Makefile.options
|
||||
|
||||
|
||||
AM_CPPFLAGS = \
|
||||
-DOMPI_PREFIX="\"$(prefix)\"" \
|
||||
|
@ -14,7 +14,7 @@
|
||||
# $HEADER$
|
||||
#
|
||||
|
||||
include $(top_srcdir)/config/Makefile.options
|
||||
|
||||
|
||||
# This is ugly, but we need it so that people can change things at
|
||||
# "make" time (e.g., "make sysconfdir=/foo/bar all") as documented in
|
||||
|
Некоторые файлы не были показаны из-за слишком большого количества измененных файлов Показать больше
Загрузка…
x
Ссылка в новой задаче
Block a user