2007-03-17 02:11:45 +03:00
|
|
|
#
|
|
|
|
# Copyright (c) 2004-2007 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-2005 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.
|
2008-03-22 05:04:05 +03:00
|
|
|
# Copyright (c) 2008 Cisco Systems, Inc. All rights reserved.
|
2008-08-02 01:14:37 +04:00
|
|
|
# Copyright (c) 2008 Sun Microsystems, Inc. All rights reserved.
|
2007-03-17 02:11:45 +03:00
|
|
|
# $COPYRIGHT$
|
|
|
|
#
|
|
|
|
# Additional copyrights may follow
|
|
|
|
#
|
|
|
|
# $HEADER$
|
|
|
|
#
|
|
|
|
|
2008-08-02 01:14:37 +04:00
|
|
|
include $(top_srcdir)/Makefile.man-page-rules
|
|
|
|
|
2008-12-22 23:23:05 +03:00
|
|
|
man_pages = orte-restart.1
|
2008-08-07 23:20:40 +04:00
|
|
|
EXTRA_DIST = orte-restart.1in
|
2008-06-20 22:19:01 +04:00
|
|
|
|
2008-06-19 18:46:10 +04:00
|
|
|
if !ORTE_DISABLE_FULL_SUPPORT
|
|
|
|
if WANT_FT
|
2008-02-28 04:57:57 +03:00
|
|
|
if OMPI_INSTALL_BINARIES
|
|
|
|
|
|
|
|
bin_PROGRAMS = orte-restart
|
|
|
|
|
2008-08-07 23:20:40 +04:00
|
|
|
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
|
2007-03-17 02:11:45 +03:00
|
|
|
|
2008-03-22 05:04:05 +03:00
|
|
|
dist_pkgdata_DATA = help-orte-restart.txt
|
2007-03-17 02:11:45 +03:00
|
|
|
|
2008-03-22 05:04:05 +03:00
|
|
|
endif # OMPI_INSTALL_BINARIES
|
|
|
|
|
|
|
|
orte_restart_SOURCES = orte-restart.c
|
|
|
|
orte_restart_LDADD = $(top_builddir)/orte/libopen-rte.la
|
|
|
|
|
2008-08-02 01:14:37 +04:00
|
|
|
endif # WANT_FT
|
|
|
|
endif # ORTE_DISABLE_FULL_SUPPORT
|
|
|
|
|
2008-08-07 23:20:40 +04:00
|
|
|
distclean-local:
|
2008-08-02 01:14:37 +04:00
|
|
|
rm -f $(man_pages)
|