2007-03-16 23:11:45 +00: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.
|
2009-04-24 16:39:33 +00:00
|
|
|
# Copyright (c) 2004-2009 High Performance Computing Center Stuttgart,
|
2007-03-16 23:11:45 +00:00
|
|
|
# University of Stuttgart. All rights reserved.
|
|
|
|
# Copyright (c) 2004-2005 The Regents of the University of California.
|
|
|
|
# All rights reserved.
|
2008-03-22 02:04:05 +00:00
|
|
|
# Copyright (c) 2008 Cisco Systems, Inc. All rights reserved.
|
2008-08-01 21:14:37 +00:00
|
|
|
# Copyright (c) 2008 Sun Microsystems, Inc. All rights reserved.
|
2011-06-09 19:45:29 +00:00
|
|
|
# Copyright (c) 2010-2011 Oak Ridge National Labs. All rights reserved.
|
2007-03-16 23:11:45 +00:00
|
|
|
# $COPYRIGHT$
|
|
|
|
#
|
|
|
|
# Additional copyrights may follow
|
|
|
|
#
|
|
|
|
# $HEADER$
|
|
|
|
#
|
|
|
|
|
2008-08-01 21:14:37 +00:00
|
|
|
include $(top_srcdir)/Makefile.man-page-rules
|
|
|
|
|
2008-12-22 20:23:05 +00:00
|
|
|
man_pages = orte-restart.1
|
2013-02-28 17:31:47 +00:00
|
|
|
EXTRA_DIST = orte-restart.1in
|
2008-06-20 18:19:01 +00:00
|
|
|
|
2011-06-09 19:45:29 +00:00
|
|
|
if WANT_FT_CR
|
2008-02-28 01:57:57 +00:00
|
|
|
if OMPI_INSTALL_BINARIES
|
|
|
|
|
|
|
|
bin_PROGRAMS = orte-restart
|
|
|
|
|
2008-08-07 19:20:40 +00: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-16 23:11:45 +00:00
|
|
|
|
2008-03-22 02:04:05 +00:00
|
|
|
dist_pkgdata_DATA = help-orte-restart.txt
|
2007-03-16 23:11:45 +00:00
|
|
|
|
2008-03-22 02:04:05 +00:00
|
|
|
endif # OMPI_INSTALL_BINARIES
|
|
|
|
|
|
|
|
orte_restart_SOURCES = orte-restart.c
|
2012-12-23 18:13:39 +00:00
|
|
|
orte_restart_LDADD = $(top_builddir)/orte/libopen-rte.la $(top_builddir)/opal/libopen-pal.la
|
2008-03-22 02:04:05 +00:00
|
|
|
|
2011-06-09 19:45:29 +00:00
|
|
|
endif # WANT_FT_CR
|
2008-08-01 21:14:37 +00:00
|
|
|
|
2008-08-07 19:20:40 +00:00
|
|
|
distclean-local:
|
2008-08-01 21:14:37 +00:00
|
|
|
rm -f $(man_pages)
|