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