214e26b539
Re-enable "./autogen.sh -no-ompi" again. If you -no-ompi, the entire OMPI configury is skipped and the entire ompi/ subtree is not built. There's some simple m4-isms that prune out the relevant parts. I added ompi/config/, orte/config/, and opal/config/ directories. I moved a bunch of m4 files from the top-level config/ dir into ompi/config/, and a few into orte/config/. Note that all 3 <project>/config directories have a config_files.m4 file. This file contains the AC_CONFIG_FILES list for that project. The AC_CONFIG_FILES call cannot be in an AC_DEFUN macro and conditionally called -- if it is included at all, Autoconf will process it. Hence, these config_files.m4 files don't AC_DEFUN -- they just have AC_CONFIG_FILES. m4_ifdef() is used to conditionally include the files or not. I moved a bunch of obvious OMPI-only m4 files from config/ to ompi/config/, but I'm sure that there's more that could go. A ticket will be filed with thoughts on future work in this area. This commit was SVN r22113.
50 строки
1.3 KiB
Bash
50 строки
1.3 KiB
Bash
# -*- shell-script -*-
|
|
#
|
|
# Copyright (c) 2009 Cisco Systems, Inc. All rights reserved.
|
|
# $COPYRIGHT$
|
|
#
|
|
# Additional copyrights may follow
|
|
#
|
|
# $HEADER$
|
|
#
|
|
|
|
# This file is m4_included in the top-level configure.ac only if we
|
|
# are building the ompi project. You cannot put an AC_CONFIG_FILES in
|
|
# an AC_DEFUN that is conditionally called (because Autoconf will
|
|
# still process the AC_CONFIG_FILES unconditionally); you can only m4
|
|
# include the file or not.
|
|
|
|
AC_CONFIG_FILES([
|
|
ompi/Makefile
|
|
ompi/etc/Makefile
|
|
ompi/include/Makefile
|
|
ompi/include/mpif.h
|
|
ompi/include/mpif-config.h
|
|
|
|
ompi/datatype/Makefile
|
|
ompi/debuggers/Makefile
|
|
|
|
ompi/mpi/c/Makefile
|
|
ompi/mpi/c/profile/Makefile
|
|
ompi/mpi/cxx/Makefile
|
|
ompi/mpi/f77/Makefile
|
|
ompi/mpi/f77/profile/Makefile
|
|
ompi/mpi/f90/Makefile
|
|
ompi/mpi/f90/fortran_kinds.sh
|
|
ompi/mpi/f90/fortran_sizes.h
|
|
ompi/mpi/f90/scripts/Makefile
|
|
|
|
ompi/tools/ompi_info/Makefile
|
|
ompi/tools/wrappers/Makefile
|
|
ompi/tools/wrappers/mpicc-wrapper-data.txt
|
|
ompi/tools/wrappers/mpic++-wrapper-data.txt
|
|
ompi/tools/wrappers/mpif77-wrapper-data.txt
|
|
ompi/tools/wrappers/mpif90-wrapper-data.txt
|
|
ompi/tools/ortetools/Makefile
|
|
ompi/tools/ompi-server/Makefile
|
|
ompi/tools/ompi-probe/Makefile
|
|
ompi/tools/ompi-profiler/Makefile
|
|
|
|
test/peruse/Makefile
|
|
])
|