
A mindless task for a lazy weekend: convert all the README and README.txt files to Markdown. Paired with the slow conversion of all of our man pages to Markdown, this gives a uniform language to the Open MPI docs. This commit moved a bunch of copyright headers out of the top-level README.txt file, so I updated the relevant copyright header years in the top-level LICENSE file to match what was removed from README.txt. Additionally, this commit did (very) little to update the actual content of the README files. A very small number of updates were made for topics that I found blatently obvious while Markdown-izing the content, but in general, I did not update content during this commit. For example, there's still quite a bit of text about ORTE that was not meaningfully updated. Signed-off-by: Jeff Squyres <jsquyres@cisco.com> Co-authored-by: Josh Hursey <jhursey@us.ibm.com>
21 строка
534 B
Makefile
21 строка
534 B
Makefile
#
|
|
# Copyright (c) 2020 Cisco Systems, Inc. All rights reserved.
|
|
# $COPYRIGHT$
|
|
#
|
|
# Additional copyrights may follow
|
|
#
|
|
# $HEADER$
|
|
#
|
|
|
|
# This Makefile is not traversed during a normal "make all" in an OMPI
|
|
# build. It *is* traversed during "make dist", however. So you can
|
|
# put EXTRA_DIST targets in here.
|
|
#
|
|
# You can also use this as a convenience for building this MPI
|
|
# extension (i.e., "make all" in this directory to invoke "make all"
|
|
# in all the subdirectories).
|
|
|
|
SUBDIRS = c mpif-h use-mpi use-mpi-f08
|
|
|
|
EXTRA_DIST = README.md
|