7ace873b50
Also added infrastructure to have developers write man pages in Markdown (vs. nroff). Pandoc >=v1.12 is used to convert those Markdown files into actual nroff man pages. Dist tarballs will contain generated nroff man pages; we don't want to require users to have Pandoc installed. Anyone who builds Open MPI from a git clone will need to have Pandoc installed (similar to how we treat Flex). You can opt out of Open MPI's Pandoc-generated man pages by configuring Open MPI with --disable-man-pages. This will also disable "make dist" (i.e., "make dist" will error if you configured with --disable-man-pages). Also removed the stuff to re-generate man pages. This commit also: 1. Includes a new man page, written in Markdown (ompi/mpi/man/man5/MPI_T.5.md) that contains Open MPI-specific information about MPI_T. 2. Includes a converted ompi/mpi/man/man3/MPI_T_init_thread.3.md (from MPI_T_init_thread.3in -- i.e., nroff) just to show that Markdown can be used throughout the Open MPI code base for man pages. 3. Made the Makefiles in ompi/mpi/man/man?/ be full-fledged Makefile.am's (vs. Makefile.extras that are designed to be included in ompi/Makefile.am). It is more convenient to test generation / installation of man pages when you can "make" and "make install" in their respective directories (vs. doing a build / install for the entire ompi project). 4. Removed logic from ompi/Makefile.am that re-generated man pages if opal_config.h changes. Other man pages -- hopefully all of them! -- will be converted to Markdown over time. Signed-off-by: Jeff Squyres <jsquyres@cisco.com>
65 строки
2.3 KiB
Bash
65 строки
2.3 KiB
Bash
# -*- shell-script -*-
|
|
#
|
|
# Copyright (c) 2009-2020 Cisco Systems, Inc. All rights reserved
|
|
# Copyright (c) 2017-2018 Research Organization for Information Science
|
|
# and Technology (RIST). All rights reserved.
|
|
# Copyright (c) 2018 Los Alamos National Security, LLC. All rights
|
|
# reserved.
|
|
# Copyright (c) 2018 FUJITSU LIMITED. All rights reserved.
|
|
# $COPYRIGHT$
|
|
#
|
|
# Additional copyrights may follow
|
|
#
|
|
# $HEADER$
|
|
#
|
|
|
|
AC_DEFUN([OMPI_CONFIG_FILES],[
|
|
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/fortran/base/Makefile
|
|
ompi/mpi/fortran/mpif-h/Makefile
|
|
ompi/mpi/fortran/mpif-h/profile/Makefile
|
|
ompi/mpi/fortran/use-mpi-tkr/Makefile
|
|
ompi/mpi/fortran/use-mpi-tkr/fortran_sizes.h
|
|
ompi/mpi/fortran/use-mpi-tkr/fortran_kinds.sh
|
|
ompi/mpi/fortran/use-mpi-ignore-tkr/Makefile
|
|
ompi/mpi/fortran/use-mpi-ignore-tkr/mpi-ignore-tkr-interfaces.h
|
|
ompi/mpi/fortran/use-mpi-ignore-tkr/mpi-ignore-tkr-file-interfaces.h
|
|
ompi/mpi/fortran/use-mpi-ignore-tkr/mpi-ignore-tkr-removed-interfaces.h
|
|
ompi/mpi/fortran/use-mpi-f08/Makefile
|
|
ompi/mpi/fortran/use-mpi-f08/base/Makefile
|
|
ompi/mpi/fortran/use-mpi-f08/bindings/Makefile
|
|
ompi/mpi/fortran/use-mpi-f08/mod/Makefile
|
|
ompi/mpi/fortran/mpiext-use-mpi/Makefile
|
|
ompi/mpi/fortran/mpiext-use-mpi-f08/Makefile
|
|
ompi/mpi/tool/Makefile
|
|
ompi/mpi/tool/profile/Makefile
|
|
|
|
ompi/mpi/man/man3/Makefile
|
|
ompi/mpi/man/man5/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/mpifort-wrapper-data.txt
|
|
ompi/tools/wrappers/ompi.pc
|
|
ompi/tools/wrappers/ompi-c.pc
|
|
ompi/tools/wrappers/ompi-cxx.pc
|
|
ompi/tools/wrappers/ompi-fort.pc
|
|
ompi/tools/wrappers/mpijavac.pl
|
|
ompi/tools/mpisync/Makefile
|
|
ompi/tools/mpirun/Makefile
|
|
])
|
|
])
|