1
1

build: add Automake-like silent/verbose macros for "ln -s ..." operations

Also, since I put some of the macros for these silent/verbose rules up
in the top-level Makefile.man-page-rules file, I renamed it to
Makefile.ompi-rules.

I've had this sitting around for a while; now seems like as good a
time as any to commit it.

This commit was SVN r31271.
This commit is contained in:
Jeff Squyres 2014-03-28 18:24:32 +00:00
parent ecce211403
commit 173c046617
40 changed files with 130 additions and 85 deletions

View File

@ -1,10 +1,10 @@
# -*- makefile -*-
# Copyright (c) 2008 Cisco Systems, Inc. All rights reserved.
# Copyright (c) 2008-2014 Cisco Systems, Inc. All rights reserved.
# Copyright (c) 2008 Sun Microsystems, Inc. All rights reserved.
# $COPYRIGHT$
#
#
# Additional copyrights may follow
#
#
# $HEADER$
#
@ -28,3 +28,16 @@
-e 's/#PACKAGE_VERSION#/@PACKAGE_VERSION@/g' \
-e 's/#OMPI_DATE#/@OMPI_RELEASE_DATE@/g' \
> $@ < $<
# A little verbosity magic; "make" will show the terse output. "make
# V=1" will show the actual commands used (just like the other
# Automake-generated compilation/linker rules).
V=0
OMPI_V_LN_S = $(ompi__v_LN_S_$V)
ompi__v_LN_S_ = $(ompi__v_LN_S_$AM_DEFAULT_VERBOSITY)
ompi__v_LN_S_0 = @echo " LN_S " `basename $@`;
OMPI_V_MKDIR = $(ompi__v_MKDIR_$V)
ompi__v_MKDIR_ = $(ompi__v_MKDIR_$AM_DEFAULT_VERBOSITY)
ompi__v_MKDIR_0 = @echo " MKDIR " $@;

View File

@ -10,7 +10,7 @@
# University of Stuttgart. All rights reserved.
# Copyright (c) 2004-2005 The Regents of the University of California.
# All rights reserved.
# Copyright (c) 2011 Cisco Systems, Inc. All rights reserved.
# Copyright (c) 2011-2014 Cisco Systems, Inc. All rights reserved.
# $COPYRIGHT$
#
# Additional copyrights may follow
@ -116,7 +116,7 @@ AC_ARG_WITH([openmpi-source],
# fix, but I'm outta time today...
AC_MSG_CHECKING([for Open MPI source tree])
AS_IF([test -d "$withval" -a -d "$withval/opal" -a -d "$withval/orte" -a -d "$withval/ompi" -a -f "$withval/VERSION" -a -f "$withval/Makefile.man-page-rules" -a -f "$withval/opal/include/opal_config.h" -a -x "$withval/config.status"],
AS_IF([test -d "$withval" -a -d "$withval/opal" -a -d "$withval/orte" -a -d "$withval/ompi" -a -f "$withval/VERSION" -a -f "$withval/Makefile.ompi-rules" -a -f "$withval/opal/include/opal_config.h" -a -x "$withval/config.status"],
[AC_MSG_RESULT([$withval])],
[AC_MSG_RESULT([not found; double check --with-openmpi-source value])
AC_MSG_ERROR([Cannot continue])])

View File

@ -1,6 +1,6 @@
#!/usr/bin/env perl
#
# Copyright (c) 2010-2013 Cisco Systems, Inc. All rights reserved.
# Copyright (c) 2010-2014 Cisco Systems, Inc. All rights reserved.
# $COPYRIGHT$
#
@ -114,7 +114,7 @@ quiet_print "==> This year: $year\n";
# Find the top-level OMPI source tree dir
my $start = cwd();
my $top = $start;
while (! -f "$top/Makefile.man-page-rules") {
while (! -f "$top/Makefile.ompi-rules") {
chdir("..");
$top = cwd();
die "Can't find top-level Open MPI directory"

View File

@ -9,7 +9,7 @@
# University of Stuttgart. All rights reserved.
# Copyright (c) 2004-2005 The Regents of the University of California.
# All rights reserved.
# Copyright (c) 2006-2012 Cisco Systems, Inc. All rights reserved.
# Copyright (c) 2006-2014 Cisco Systems, Inc. All rights reserved.
# Copyright (c) 2009-2011 Oak Ridge National Labs. All rights reserved.
# $COPYRIGHT$
#
@ -18,6 +18,8 @@
# $HEADER$
#
include $(top_srcdir)/Makefile.ompi-rules
# Note - headers and nodist_headers will go in ${includedir}/openmpi,
# not ${includedir}/
headers =
@ -80,4 +82,4 @@ distclean-local:
rm -f mpi-ext.h mpif-ext.h mpi_portable_platform.h
mpi_portable_platform.h: $(top_srcdir)/opal/include/opal/opal_portable_platform.h
$(LN_S) $(top_srcdir)/opal/include/opal/opal_portable_platform.h mpi_portable_platform.h
$(OMPI_V_LN_S) $(LN_S) $(top_srcdir)/opal/include/opal/opal_portable_platform.h mpi_portable_platform.h

View File

@ -10,6 +10,7 @@
# Copyright (c) 2004-2005 The Regents of the University of California.
# All rights reserved.
# Copyright (c) 2011-2013 NVIDIA Corporation. All rights reserved.
# Copyright (c) 2014 Cisco Systems, Inc. All rights reserved.
# $COPYRIGHT$
#
# Additional copyrights may follow
@ -98,8 +99,13 @@ endif
# to the installable libtool library filename in the case where we are
# compiling this component statically (case 2), described above).
V=0
OMPI_V_LN_SCOMP = $(ompi__v_LN_SCOMP_$V)
ompi__v_LN_SCOMP_ = $(ompi__v_LN_SCOMP_$AM_DEFAULT_VERBOSITY)
ompi__v_LN_SCOMP_0 = @echo " LN_S " `basename $(comp_inst)`;
all-local:
if test -z "$(lib_LTLIBRARIES)"; then \
$(OMPI_V_LN_SCOMP) if test -z "$(lib_LTLIBRARIES)"; then \
rm -f "$(comp_inst)"; \
$(LN_S) "$(comp_noinst)" "$(comp_inst)"; \
fi

View File

@ -1,6 +1,6 @@
#
# Copyright (c) 2009-2012 Mellanox Technologies. All rights reserved.
# Copyright (c) 2009 Cisco Systems, Inc. All rights reserved.
# Copyright (c) 2009-2014 Cisco Systems, Inc. All rights reserved.
# Copyright (c) 2009-2012 Oak Ridge National Laboratory. All rights reserved.
# $COPYRIGHT$
#
@ -66,8 +66,13 @@ endif
# See ompi/mca/common/sm/Makefile.am for an explanation of the
# the *-local rules, below.
V=0
OMPI_V_LN_SCOMP = $(ompi__v_LN_SCOMP_$V)
ompi__v_LN_SCOMP_ = $(ompi__v_LN_SCOMP_$AM_DEFAULT_VERBOSITY)
ompi__v_LN_SCOMP_0 = @echo " LN_S " `basename $(comp_inst)`;
all-local:
if test -z "$(lib_LTLIBRARIES)"; then \
$(OMPI_V_LN_SCOMP) if test -z "$(lib_LTLIBRARIES)"; then \
rm -f "$(comp_inst)"; \
$(LN_S) "$(comp_noinst)" "$(comp_inst)"; \
fi

View File

@ -9,7 +9,7 @@
# University of Stuttgart. All rights reserved.
# Copyright (c) 2004-2005 The Regents of the University of California.
# All rights reserved.
# Copyright (c) 2010 Cisco Systems, Inc. All rights reserved.
# Copyright (c) 2010-2014 Cisco Systems, Inc. All rights reserved.
# Copyright (c) 2010-2013 Los Alamos National Security, LLC.
# All rights reserved.
# $COPYRIGHT$
@ -98,8 +98,14 @@ endif
# to the installable libtool library filename in the case where we are
# compiling this component statically (case 2), described above).
# See Makefile.ompi-rules for an explanation of the "V" macros, below
V=0
OMPI_V_LN_SCOMP = $(ompi__v_LN_SCOMP_$V)
ompi__v_LN_SCOMP_ = $(ompi__v_LN_SCOMP_$AM_DEFAULT_VERBOSITY)
ompi__v_LN_SCOMP_0 = @echo " LN_S " `basename $(comp_inst)`;
all-local:
if test -z "$(lib_LTLIBRARIES)"; then \
$(OMPI_V_LN_SCOMP) if test -z "$(lib_LTLIBRARIES)"; then \
rm -f "$(comp_inst)"; \
$(LN_S) "$(comp_noinst)" "$(comp_inst)"; \
fi

View File

@ -47,8 +47,13 @@ libmca_common_ugni_noinst_la_LDFLAGS = -module -avoid-version $(common_ugni_LDFL
# to the installable libtool library filename in the case where we are
# compiling this component statically (case 2), described above).
V=0
OMPI_V_LN_SCOMP = $(ompi__v_LN_SCOMP_$V)
ompi__v_LN_SCOMP_ = $(ompi__v_LN_SCOMP_$AM_DEFAULT_VERBOSITY)
ompi__v_LN_SCOMP_0 = @echo " LN_S " `basename $(component_install)`;
all-local:
if test -z "$(mcacomponent_LTLIBRARIES)"; then \
$(OMPI_V_LN_SCOMP) if test -z "$(mcacomponent_LTLIBRARIES)"; then \
rm -f "$(component_install)"; \
$(LN_S) "$(component_noinst)" "$(component_install)"; \
fi

View File

@ -1,7 +1,7 @@
#
# Copyright (c) 2009-2012 Mellanox Technologies. All rights reserved.
# Copyright (c) 2009-2012 Oak Ridge National Laboratory. All rights reserved.
# Copyright (c) 2012 Cisco Systems, Inc. All rights reserved.
# Copyright (c) 2012-2014 Cisco Systems, Inc. All rights reserved.
# $COPYRIGHT$
#
# Additional copyrights may follow
@ -67,9 +67,13 @@ endif
# These two rules will sym link the "noinst" libtool library filename
# to the installable libtool library filename in the case where we are
# compiling this component statically (case 2), described above).
V=0
OMPI_V_LN_SCOMP = $(ompi__v_LN_SCOMP_$V)
ompi__v_LN_SCOMP_ = $(ompi__v_LN_SCOMP_$AM_DEFAULT_VERBOSITY)
ompi__v_LN_SCOMP_0 = @echo " LN_S " `basename $(comp_inst)`;
all-local:
if test -z "$(lib_LTLIBRARIES)"; then \
$(OMPI_V_LN_SCOMP) if test -z "$(lib_LTLIBRARIES)"; then \
rm -f "$(comp_inst)"; \
$(LN_S) "$(comp_noinst)" "$(comp_inst)"; \
fi

View File

@ -10,7 +10,7 @@
# Copyright (c) 2004-2005 The Regents of the University of California.
# All rights reserved.
# Copyright (c) 2008 Sun Microsystems, Inc. All rights reserved.
# Copyright (c) 2008-2010 Cisco Systems, Inc. All rights reserved.
# Copyright (c) 2008-2014 Cisco Systems, Inc. All rights reserved.
# $COPYRIGHT$
#
# Additional copyrights may follow
@ -18,7 +18,7 @@
# $HEADER$
#
include $(top_srcdir)/Makefile.man-page-rules
include $(top_srcdir)/Makefile.ompi-rules
# main library setup
noinst_LTLIBRARIES = libmca_crcp.la

View File

@ -22,6 +22,8 @@
# $HEADER$
#
include $(top_srcdir)/Makefile.ompi-rules
#
# OMPI_PROFILING_DEFINES flag s enabled when we want our MPI_* symbols
# to be replaced by PMPI_*. In other words, this flag decides
@ -433,7 +435,7 @@ endif
# Sym link in the sources from the real MPI directory
#
$(nodist_libmpi_c_pmpi_la_SOURCES):
if test ! -r $@ ; then \
$(OMPI_V_LN_S) if test ! -r $@ ; then \
pname=`echo $@ | cut -b '2-'` ; \
$(LN_S) $(top_srcdir)/ompi/mpi/c/$$pname $@ ; \
fi

View File

@ -22,6 +22,7 @@
# $HEADER$
#
include $(top_srcdir)/Makefile.ompi-rules
#
# OMPI_PROFILING_DEFINES flag is enabled when we want our MPI_* symbols
@ -405,7 +406,7 @@ endif
# Sym link in the sources from the real MPI directory
#
$(nodist_libmpi_mpifh_pmpi_la_SOURCES):
if test ! -r $@ ; then \
$(OMPI_V_LN_S) if test ! -r $@ ; then \
pname=`echo $@ | cut -b '2-'` ; \
$(LN_S) $(top_srcdir)/ompi/mpi/fortran/mpif-h/$$pname $@ ; \
fi

View File

@ -8,6 +8,8 @@
# $HEADER$
#
include $(top_srcdir)/Makefile.ompi-rules
#
# We generate three general things in this directory:
#
@ -88,34 +90,27 @@ JAVA_H = \
mpi_Status.h \
mpi_Win.h
# A little verbosity magic; "make" will show the terse output. "make
# V=1" will show the actual commands used (just like the other
# Automake-generated compilation/linker rules).
V=0
# A little verbosity magic; see Makefile.ompi-rules for an explanation.
OMPI_V_JAVAC = $(ompi__v_JAVAC_$V)
ompi__v_JAVAC_ = $(ompi__v_JAVAC_$AM_DEFAULT_VERBOSITY)
ompi__v_JAVAC_0 = @echo " JAVAC " `basename $@`;
ompi__v_JAVAC_0 = @echo " JAVAC " `basename $@`;
OMPI_V_JAVAH = $(ompi__v_JAVAH_$V)
ompi__v_JAVAH_ = $(ompi__v_JAVAH_$AM_DEFAULT_VERBOSITY)
ompi__v_JAVAH_0 = @echo " JAVAH " `basename $@`;
ompi__v_JAVAH_0 = @echo " JAVAH " `basename $@`;
OMPI_V_JAR = $(ompi__v_JAR_$V)
ompi__v_JAR_ = $(ompi__v_JAR_$AM_DEFAULT_VERBOSITY)
ompi__v_JAR_0 = @echo " JAR " `basename $@`;
ompi__v_JAR_0 = @echo " JAR " `basename $@`;
OMPI_V_JAVADOC = $(ompi__v_JAVADOC_$V)
ompi__v_JAVADOC_ = $(ompi__v_JAVADOC_$AM_DEFAULT_VERBOSITY)
ompi__v_JAVADOC_0 = @echo "JAVADOC " `basename $@`;
ompi__v_JAVADOC_0 = @echo "JAVADOC " `basename $@`;
OMPI_V_JAVADOC_QUIET = $(ompi__v_JAVADOC_QUIET_$V)
ompi__v_JAVADOC_QUIET_ = $(ompi__v_JAVADOC_QUIET_$AM_DEFAULT_VERBOSITY)
ompi__v_JAVADOC_QUIET_0 = -quiet
OMPI_V_MKDIR = $(ompi__v_MKDIR_$V)
ompi__v_MKDIR_ = $(ompi__v_MKDIR_$AM_DEFAULT_VERBOSITY)
ompi__v_MKDIR_0 = @echo " MKDIR " $@;
# All the .java files seem to have circular references, such that I
# can't figure out a linear order in which to compile them
# sequentially that does not generate dependency errors. Hence, the

View File

@ -9,7 +9,7 @@
# $HEADER$
#
include $(top_srcdir)/Makefile.man-page-rules
include $(top_srcdir)/Makefile.ompi-rules
mpi_api_man_pages = \
mpi/man/man3/MPI.3 \

View File

@ -10,7 +10,7 @@
# University of Stuttgart. All rights reserved.
# Copyright (c) 2004-2005 The Regents of the University of California.
# All rights reserved.
# Copyright (c) 2009-2012 Cisco Systems, Inc. All rights reserved.
# Copyright (c) 2009-2014 Cisco Systems, Inc. All rights reserved.
# Copyright (c) 2011 Sandia National Laboratories. All rights reserved.
# Copyright (c) 2012 Oak Rigde National Laboratory. All rights reserved.
# Copyright (c) 2013 Los Alamos National Security, LLC. All rights
@ -22,6 +22,8 @@
# $HEADER$
#
include $(top_srcdir)/Makefile.ompi-rules
#
# OMPI_PROFILING_DEFINES flag s enabled when we want our MPI_* symbols
# to be replaced by PMPI_*. In other words, this flag decides
@ -80,7 +82,7 @@ nodist_libmpi_pmpit_la_SOURCES = \
# Sym link in the sources from the real MPI directory
#
$(nodist_libmpi_pmpit_la_SOURCES):
if test ! -r $@ ; then \
$(OMPI_V_LN_S) if test ! -r $@ ; then \
pname=`echo $@ | cut -b '2-'` ; \
$(LN_S) $(top_srcdir)/ompi/mpi/tool/$$pname $@ ; \
fi

View File

@ -2,7 +2,7 @@
# Copyright (c) 2004-2009 The Trustees of Indiana University and Indiana
# University Research and Technology
# Corporation. All rights reserved.
# Copyright (c) 2010-2012 Cisco Systems, Inc. All rights reserved.
# Copyright (c) 2010-2014 Cisco Systems, Inc. All rights reserved.
# $COPYRIGHT$
#
# Additional copyrights may follow
@ -23,7 +23,7 @@ CLEANFILES = example
# header files do the Right Thing.
AM_CPPFLAGS = -DOMPI_PROFILE_LAYER=0 -DOMPI_COMPILING_FORTRAN_WRAPPERS=1
include $(top_srcdir)/Makefile.man-page-rules
include $(top_srcdir)/Makefile.ompi-rules
# Convenience libtool library that will be slurped up into libmpi.la.
noinst_LTLIBRARIES = libmpiext_affinity_c.la

View File

@ -9,7 +9,7 @@
# University of Stuttgart. All rights reserved.
# Copyright (c) 2004-2005 The Regents of the University of California.
# All rights reserved.
# Copyright (c) 2008 Cisco Systems, Inc. All rights reserved.
# Copyright (c) 2008-2014 Cisco Systems, Inc. All rights reserved.
# Copyright (c) 2008 Sun Microsystems, Inc. All rights reserved.
# Copyright (c) 2012 Los Alamos National Security, LLC.
# All rights reserved.
@ -38,7 +38,7 @@ AM_CFLAGS = \
-DOPAL_CC_ABSOLUTE="\"@OPAL_CC_ABSOLUTE@\"" \
-DOMPI_CXX_ABSOLUTE="\"@OMPI_CXX_ABSOLUTE@\""
include $(top_srcdir)/Makefile.man-page-rules
include $(top_srcdir)/Makefile.ompi-rules
man_pages = ompi_info.1
EXTRA_DIST = $(man_pages:.1=.1in)

View File

@ -9,7 +9,7 @@
# University of Stuttgart. All rights reserved.
# Copyright (c) 2004-2005 The Regents of the University of California.
# All rights reserved.
# Copyright (c) 2006-2012 Cisco Systems, Inc. All rights reserved.
# Copyright (c) 2006-2014 Cisco Systems, Inc. All rights reserved.
# Copyright (c) 2012 Los Alamos National Security, LLC. All rights reserved.
# Copyright (c) 2013 Intel, Inc. All rights reserved.
# $COPYRIGHT$
@ -19,6 +19,8 @@
# $HEADER$
#
include $(top_srcdir)/Makefile.ompi-rules
generated_man_pages = mpicc.1 mpic++.1 mpicxx.1 mpifort.1 mpif77.1 mpif90.1
man_pages = $(generated_man_pages)
@ -187,5 +189,5 @@ mpif77.1: mpif77.1in
# Deprecated
mpif90.1: mpif77.1
rm -f mpif90.1
ln -s mpif77.1 mpif90.1
@ rm -f mpif90.1
$(OMPI_V_LN_S) $(LN_S) mpif77.1 mpif90.1

View File

@ -9,7 +9,7 @@
# University of Stuttgart. All rights reserved.
# Copyright (c) 2004-2005 The Regents of the University of California.
# All rights reserved.
# Copyright (c) 2011-2012 Cisco Systems, Inc. All rights reserved.
# Copyright (c) 2011-2014 Cisco Systems, Inc. All rights reserved.
# $COPYRIGHT$
#
# Additional copyrights may follow
@ -17,7 +17,7 @@
# $HEADER$
#
include $(top_srcdir)/Makefile.ompi-rules
######################################################################
#

View File

@ -2,7 +2,7 @@
# Copyright (c) 2004-2010 The Trustees of Indiana University and Indiana
# University Research and Technology
# Corporation. All rights reserved.
# Copyright (c) 2010 Cisco Systems, Inc. All rights reserved.
# Copyright (c) 2010-2014 Cisco Systems, Inc. All rights reserved.
# $COPYRIGHT$
#
# Additional copyrights may follow
@ -10,8 +10,6 @@
# $HEADER$
#
include $(top_srcdir)/Makefile.man-page-rules
# main library setup
noinst_LTLIBRARIES = libmca_compress.la
libmca_compress_la_SOURCES =

View File

@ -10,7 +10,7 @@
# Copyright (c) 2004-2005 The Regents of the University of California.
# All rights reserved.
# Copyright (c) 2008 Sun Microsystems, Inc. All rights reserved.
# Copyright (c) 2008-2010 Cisco Systems, Inc. All rights reserved.
# Copyright (c) 2008-2014 Cisco Systems, Inc. All rights reserved.
# $COPYRIGHT$
#
# Additional copyrights may follow
@ -18,7 +18,7 @@
# $HEADER$
#
include $(top_srcdir)/Makefile.man-page-rules
include $(top_srcdir)/Makefile.ompi-rules
# main library setup
noinst_LTLIBRARIES = libmca_crs.la

View File

@ -9,7 +9,7 @@
# University of Stuttgart. All rights reserved.
# Copyright (c) 2004-2005 The Regents of the University of California.
# All rights reserved.
# Copyright (c) 2008 Cisco Systems, Inc. All rights reserved.
# Copyright (c) 2008-2014 Cisco Systems, Inc. All rights reserved.
# Copyright (c) 2008 Sun Microsystems, Inc. All rights reserved.
# Copyright (c) 2010-2011 Oak Ridge National Labs. All rights reserved.
# $COPYRIGHT$
@ -19,7 +19,7 @@
# $HEADER$
#
include $(top_srcdir)/Makefile.man-page-rules
include $(top_srcdir)/Makefile.ompi-rules
man_pages = opal-checkpoint.1
EXTRA_DIST = $(man_pages:.1=.1in)

View File

@ -9,7 +9,7 @@
# University of Stuttgart. All rights reserved.
# Copyright (c) 2004-2005 The Regents of the University of California.
# All rights reserved.
# Copyright (c) 2008 Cisco Systems, Inc. All rights reserved.
# Copyright (c) 2008-2014 Cisco Systems, Inc. All rights reserved.
# Copyright (c) 2008 Sun Microsystems, Inc. All rights reserved.
# Copyright (c) 2010-2011 Oak Ridge National Labs. All rights reserved.
# $COPYRIGHT$
@ -19,7 +19,7 @@
# $HEADER$
#
include $(top_srcdir)/Makefile.man-page-rules
include $(top_srcdir)/Makefile.ompi-rules
man_pages = opal-restart.1
EXTRA_DIST = $(man_pages:.1=.1in)

View File

@ -9,7 +9,7 @@
# University of Stuttgart. All rights reserved.
# Copyright (c) 2004-2005 The Regents of the University of California.
# All rights reserved.
# Copyright (c) 2006-2010 Cisco Systems, Inc. All rights reserved.
# Copyright (c) 2006-2014 Cisco Systems, Inc. All rights reserved.
# Copyright (c) 2008 Sun Microsystems, Inc. All rights reserved.
# $COPYRIGHT$
#
@ -23,7 +23,7 @@ DEFS="-DEXEEXT=\"$(EXEEXT)\""
real_man_pages = generic_wrapper.1 opal_wrapper.1
EXTRA_DIST = $(real_man_pages:.1=.1in)
include $(top_srcdir)/Makefile.man-page-rules
include $(top_srcdir)/Makefile.ompi-rules
if !OPAL_WANT_SCRIPT_WRAPPER_COMPILERS
if OMPI_INSTALL_BINARIES

View File

@ -10,7 +10,7 @@
# Copyright (c) 2004-2005 The Regents of the University of California.
# All rights reserved.
# Copyright (c) 2008 Sun Microsystems, Inc. All rights reserved.
# Copyright (c) 2008-2010 Cisco Systems, Inc. All rights reserved.
# Copyright (c) 2008-2014 Cisco Systems, Inc. All rights reserved.
# $COPYRIGHT$
#
# Additional copyrights may follow
@ -18,7 +18,7 @@
# $HEADER$
#
include $(top_srcdir)/Makefile.man-page-rules
include $(top_srcdir)/Makefile.ompi-rules
# main library setup
noinst_LTLIBRARIES = libmca_filem.la

View File

@ -10,7 +10,7 @@
# Copyright (c) 2004-2005 The Regents of the University of California.
# All rights reserved.
# Copyright (c) 2008 Sun Microsystems, Inc. All rights reserved.
# Copyright (c) 2008-2010 Cisco Systems, Inc. All rights reserved.
# Copyright (c) 2008-2014 Cisco Systems, Inc. All rights reserved.
# $COPYRIGHT$
#
# Additional copyrights may follow
@ -18,7 +18,7 @@
# $HEADER$
#
include $(top_srcdir)/Makefile.man-page-rules
include $(top_srcdir)/Makefile.ompi-rules
# main library setup
noinst_LTLIBRARIES = libmca_snapc.la

View File

@ -2,7 +2,7 @@
# Copyright (c) 2010 The Trustees of Indiana University and Indiana
# University Research and Technology
# Corporation. All rights reserved.
# Copyright (c) 2010 Cisco Systems, Inc. All rights reserved.
# Copyright (c) 2010-2014 Cisco Systems, Inc. All rights reserved.
# $COPYRIGHT$
#
# Additional copyrights may follow
@ -10,7 +10,7 @@
# $HEADER$
#
include $(top_srcdir)/Makefile.man-page-rules
include $(top_srcdir)/Makefile.ompi-rules
# main library setup
noinst_LTLIBRARIES = libmca_sstore.la

View File

@ -9,7 +9,7 @@
# University of Stuttgart. All rights reserved.
# Copyright (c) 2004-2005 The Regents of the University of California.
# All rights reserved.
# Copyright (c) 2008 Cisco Systems, Inc. All rights reserved.
# Copyright (c) 2008-2014 Cisco Systems, Inc. All rights reserved.
# Copyright (c) 2008 Sun Microsystems, Inc. All rights reserved.
# Copyright (c) 2010-2011 Oak Ridge National Labs. All rights reserved.
# $COPYRIGHT$
@ -19,7 +19,7 @@
# $HEADER$
#
include $(top_srcdir)/Makefile.man-page-rules
include $(top_srcdir)/Makefile.ompi-rules
man_pages = orte-checkpoint.1
EXTRA_DIST = orte-checkpoint.1in

View File

@ -9,7 +9,7 @@
# University of Stuttgart. All rights reserved.
# Copyright (c) 2004-2005 The Regents of the University of California.
# All rights reserved.
# Copyright (c) 2008 Cisco Systems, Inc. All rights reserved.
# Copyright (c) 2008-2014 Cisco Systems, Inc. All rights reserved.
# Copyright (c) 2008 Sun Microsystems, Inc. All rights reserved.
# $COPYRIGHT$
#
@ -18,7 +18,7 @@
# $HEADER$
#
include $(top_srcdir)/Makefile.man-page-rules
include $(top_srcdir)/Makefile.ompi-rules
man_pages = orte-clean.1
EXTRA_DIST = $(man_pages:.1=.1in)

View File

@ -9,7 +9,7 @@
# University of Stuttgart. All rights reserved.
# Copyright (c) 2004-2005 The Regents of the University of California.
# All rights reserved.
# Copyright (c) 2010-2012 Cisco Systems, Inc. All rights reserved.
# Copyright (c) 2010-2014 Cisco Systems, Inc. All rights reserved.
# Copyright (c) 2008 Sun Microsystems, Inc. All rights reserved.
# $COPYRIGHT$
#
@ -35,8 +35,8 @@ AM_CFLAGS = \
-DOMPI_BUILD_LIBS="\"@LIBS@\"" \
-DOPAL_CC_ABSOLUTE="\"@OPAL_CC_ABSOLUTE@\"" \
-DOMPI_CXX_ABSOLUTE="\"@OMPI_CXX_ABSOLUTE@\""
include $(top_srcdir)/Makefile.man-page-rules
include $(top_srcdir)/Makefile.ompi-rules
man_pages = orte-info.1
EXTRA_DIST = $(man_pages:.1=.1in)

View File

@ -4,6 +4,7 @@
# Corporation. All rights reserved.
# Copyright (c) 2010-2011 Oak Ridge National Labs. All rights reserved.
#
# Copyright (c) 2014 Cisco Systems, Inc. All rights reserved.
# $COPYRIGHT$
#
# Additional copyrights may follow
@ -11,7 +12,7 @@
# $HEADER$
#
include $(top_srcdir)/Makefile.man-page-rules
include $(top_srcdir)/Makefile.ompi-rules
man_pages = orte-migrate.1
EXTRA_DIST = orte-migrate.1in

View File

@ -9,7 +9,7 @@
# University of Stuttgart. All rights reserved.
# Copyright (c) 2004-2005 The Regents of the University of California.
# All rights reserved.
# Copyright (c) 2008 Cisco Systems, Inc. All rights reserved.
# Copyright (c) 2008-2014 Cisco Systems, Inc. All rights reserved.
# Copyright (c) 2008 Sun Microsystems, Inc. All rights reserved.
# $COPYRIGHT$
#
@ -18,7 +18,7 @@
# $HEADER$
#
include $(top_srcdir)/Makefile.man-page-rules
include $(top_srcdir)/Makefile.ompi-rules
man_pages = orte-ps.1
EXTRA_DIST = $(man_pages:.1=.1in)

View File

@ -9,7 +9,7 @@
# University of Stuttgart. All rights reserved.
# Copyright (c) 2004-2005 The Regents of the University of California.
# All rights reserved.
# Copyright (c) 2008 Cisco Systems, Inc. All rights reserved.
# Copyright (c) 2008-2014 Cisco Systems, Inc. All rights reserved.
# Copyright (c) 2008 Sun Microsystems, Inc. All rights reserved.
# Copyright (c) 2010-2011 Oak Ridge National Labs. All rights reserved.
# $COPYRIGHT$
@ -19,7 +19,7 @@
# $HEADER$
#
include $(top_srcdir)/Makefile.man-page-rules
include $(top_srcdir)/Makefile.ompi-rules
man_pages = orte-restart.1
EXTRA_DIST = orte-restart.1in

View File

@ -9,7 +9,7 @@
# University of Stuttgart. All rights reserved.
# Copyright (c) 2004-2005 The Regents of the University of California.
# All rights reserved.
# Copyright (c) 2008 Cisco Systems, Inc. All rights reserved.
# Copyright (c) 2008-2014 Cisco Systems, Inc. All rights reserved.
# Copyright (c) 2008 Sun Microsystems, Inc. All rights reserved.
# $COPYRIGHT$
#
@ -18,7 +18,7 @@
# $HEADER$
#
include $(top_srcdir)/Makefile.man-page-rules
include $(top_srcdir)/Makefile.ompi-rules
man_pages = orte-server.1
EXTRA_DIST = $(man_pages:.1=.1in)

View File

@ -9,7 +9,7 @@
# University of Stuttgart. All rights reserved.
# Copyright (c) 2004-2005 The Regents of the University of California.
# All rights reserved.
# Copyright (c) 2008 Cisco Systems, Inc. All rights reserved.
# Copyright (c) 2008-2014 Cisco Systems, Inc. All rights reserved.
# Copyright (c) 2008 Sun Microsystems, Inc. All rights reserved.
# $COPYRIGHT$
#
@ -18,7 +18,7 @@
# $HEADER$
#
include $(top_srcdir)/Makefile.man-page-rules
include $(top_srcdir)/Makefile.ompi-rules
man_pages = orte-top.1
EXTRA_DIST = orte-top.1in

View File

@ -9,7 +9,7 @@
# University of Stuttgart. All rights reserved.
# Copyright (c) 2004-2005 The Regents of the University of California.
# All rights reserved.
# Copyright (c) 2007-2008 Cisco Systems, Inc. All rights reserved.
# Copyright (c) 2007-2014 Cisco Systems, Inc. All rights reserved.
# Copyright (c) 2008 Sun Microsystems, Inc. All rights reserved.
# $COPYRIGHT$
#
@ -18,7 +18,7 @@
# $HEADER$
#
include $(top_srcdir)/Makefile.man-page-rules
include $(top_srcdir)/Makefile.ompi-rules
man_pages = orted.1
EXTRA_DIST = $(man_pages:.1=.1in)

View File

@ -9,7 +9,7 @@
# University of Stuttgart. All rights reserved.
# Copyright (c) 2004-2005 The Regents of the University of California.
# All rights reserved.
# Copyright (c) 2008-2009 Cisco Systems, Inc. All rights reserved.
# Copyright (c) 2008-2014 Cisco Systems, Inc. All rights reserved.
# Copyright (c) 2008 Sun Microsystems, Inc. All rights reserved.
# $COPYRIGHT$
#
@ -27,7 +27,7 @@
CFLAGS = $(CFLAGS_WITHOUT_OPTFLAGS) $(DEBUGGER_CFLAGS)
include $(top_srcdir)/Makefile.man-page-rules
include $(top_srcdir)/Makefile.ompi-rules
man_pages = orterun.1
EXTRA_DIST = $(man_pages:.1=.1in)

View File

@ -10,6 +10,7 @@
# Copyright (c) 2004-2005 The Regents of the University of California.
# All rights reserved.
# Copyright (c) 2008 Sun Microsystems, Inc. All rights reserved.
# Copyright (c) 2014 Cisco Systems, Inc. All rights reserved.
# $COPYRIGHT$
#
# Additional copyrights may follow
@ -19,7 +20,7 @@
# This makefile.am does not stand on its own - it is included from orte/Makefile.am
include $(top_srcdir)/Makefile.man-page-rules
include $(top_srcdir)/Makefile.ompi-rules
dist_ompidata_DATA += util/hostfile/help-hostfile.txt \
util/dash_host/help-dash-host.txt \

View File

@ -9,6 +9,8 @@
# $HEADER$
#
include $(top_srcdir)/Makefile.ompi-rules
#
# OSHMEM_PROFILING flag is enabled when we want our shmem_* symbols
# to be replaced by pshmem_*. In other words, this flag decides
@ -73,7 +75,7 @@ nodist_liboshmem_c_pshmem_la_SOURCES = \
# Sym link in the sources from the real MPI directory
#
$(nodist_liboshmem_c_pshmem_la_SOURCES):
if test ! -r $@ ; then \
$(OMPI_V_LN_S) if test ! -r $@ ; then \
pname=`echo $@ | cut -b '1-'` ; \
$(LN_S) $(top_srcdir)/oshmem/shmem/c/$$pname $@ ; \
fi

View File

@ -38,7 +38,7 @@ else
AM_CPPFLAGS += -DOSHMEM_BUILD_FORTRAN_BINDINGS=0
endif
include $(top_srcdir)/Makefile.man-page-rules
include $(top_srcdir)/Makefile.ompi-rules
nodist_man_MANS =
bin_PROGRAMS =