
This is a runtime interposition project that sits between the OMPI and ORTE layers in Open MPI. The project is described on the wiki: https://svn.open-mpi.org/trac/ompi/wiki/Runtime_Interposition And on this email thread: http://www.open-mpi.org/community/lists/devel/2012/06/11109.php This commit was SVN r26670.
55 строки
1.8 KiB
Makefile
55 строки
1.8 KiB
Makefile
#
|
|
# Copyright (c) 2004-2005 The Trustees of Indiana University and Indiana
|
|
# University Research and Technology
|
|
# Corporation. All rights reserved.
|
|
# Copyright (c) 2004-2005 The University of Tennessee and The University
|
|
# of Tennessee Research Foundation. All rights
|
|
# reserved.
|
|
# Copyright (c) 2004-2009 High Performance Computing Center Stuttgart,
|
|
# 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 Sun Microsystems, Inc. All rights reserved.
|
|
# Copyright (c) 2012 Oak Ridge National Labs. All rights reserved.
|
|
# $COPYRIGHT$
|
|
#
|
|
# Additional copyrights may follow
|
|
#
|
|
# $HEADER$
|
|
#
|
|
|
|
include $(top_srcdir)/Makefile.man-page-rules
|
|
|
|
man_pages = ompi-server.1
|
|
EXTRA_DIST = $(man_pages:.1=.1in) CMakeLists.txt
|
|
|
|
if OMPI_INSTALL_BINARIES
|
|
if ORCA_WITH_FULL_ORTE_SUPPORT
|
|
|
|
bin_PROGRAMS = ompi-server
|
|
|
|
dist_pkgdata_DATA = help-ompi-server.txt
|
|
|
|
nodist_man_MANS = $(man_pages)
|
|
|
|
# Ensure that the man pages are rebuilt if the opal_config.h file
|
|
# changes; a "good enough" way to know if configure was run again (and
|
|
# therefore the release date or version may have changed)
|
|
$(nodist_man_MANS): $(top_builddir)/opal/include/opal_config.h
|
|
|
|
endif # ORCA_WITH_FULL_ORTE_SUPPORT
|
|
endif # OMPI_INSTALL_BINARIES
|
|
|
|
ompi_server_SOURCES = ompi-server.c
|
|
|
|
# We need the ORTE symbols, but not the OMPI symbols for this tool
|
|
# so link directly to orte.
|
|
#ompi_server_LDADD = $(top_builddir)/ompi/libmpi.la
|
|
ompi_server_LDADD = \
|
|
$(top_builddir)/ompi/libmpi.la \
|
|
$(orca_direct_orte_LDFLAGS) $(orca_direct_orte_LIBS)
|
|
|
|
distclean-local:
|
|
rm -f $(man_pages)
|