
Add a line that was accidentally left out that includes the generated nroff pages (from the Markdown pages) in the dist tarball. The lack of these files in the dist tarball was causing configure to fail a test and therefore conclude that we need to have pandoc installed. Put differently: it's a specific goal that we do not want end users to have to have Pandoc installed -- all Markdown files must generate their nroff equivalents and have those nroff files included in the distribution tarball. Signed-off-by: Jeff Squyres <jsquyres@cisco.com>
34 строки
735 B
Makefile
34 строки
735 B
Makefile
# -*- makefile -*-
|
|
#
|
|
# Copyright (c) 2020 Cisco Systems, Inc. All rights reserved.
|
|
#
|
|
# $COPYRIGHT$
|
|
#
|
|
# Additional copyrights may follow
|
|
#
|
|
# $HEADER$
|
|
#
|
|
|
|
include $(top_srcdir)/Makefile.ompi-rules
|
|
|
|
# Just in case someone looks for it here someday, here is a
|
|
# conveninent reference for what Markdown pandoc supports:
|
|
#
|
|
# https://rmarkdown.rstudio.com/authoring_pandoc_markdown.html
|
|
MD_FILES = \
|
|
MPI_T.5.md \
|
|
Open-MPI.5.md
|
|
|
|
native_nroff_files = \
|
|
MPI.5 \
|
|
OpenMPI.5
|
|
|
|
man_pages_from_md = $(MD_FILES:.5.md=.5)
|
|
|
|
if OPAL_ENABLE_MAN_PAGES
|
|
man_MANS = $(man_pages_from_md) $(native_nroff_files)
|
|
MAINTAINERCLEANFILES = $(man_pages_from_md)
|
|
endif
|
|
|
|
EXTRA_DIST = $(MD_FILES) $(man_pages_from_md) $(native_nroff_files)
|