6539a31b23
Add a WANT_FT_CR flag different from WANT_FT so tools like *-checkpoint are not built when a different FT technique is requested. Also fix the C/R thread check so that it is only enabled if C/R is enabled, not generally when threads are enabled. This commit was SVN r24769.
44 строки
1.1 KiB
Makefile
44 строки
1.1 KiB
Makefile
#
|
|
# Copyright (c) 2009-2010 The Trustees of Indiana University and Indiana
|
|
# University Research and Technology
|
|
# Corporation. All rights reserved.
|
|
# Copyright (c) 2010-2011 Oak Ridge National Labs. All rights reserved.
|
|
#
|
|
# $COPYRIGHT$
|
|
#
|
|
# Additional copyrights may follow
|
|
#
|
|
# $HEADER$
|
|
#
|
|
|
|
include $(top_srcdir)/Makefile.man-page-rules
|
|
|
|
man_pages = orte-migrate.1
|
|
EXTRA_DIST = orte-migrate.1in CMakeLists.txt
|
|
|
|
if !ORTE_DISABLE_FULL_SUPPORT
|
|
if WANT_FT_CR
|
|
if OMPI_INSTALL_BINARIES
|
|
|
|
bin_PROGRAMS = orte-migrate
|
|
|
|
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
|
|
|
|
dist_pkgdata_DATA = help-orte-migrate.txt
|
|
|
|
endif # OMPI_INSTALL_BINARIES
|
|
|
|
orte_migrate_SOURCES = orte-migrate.c
|
|
orte_migrate_LDADD = $(top_builddir)/orte/libopen-rte.la
|
|
|
|
endif # WANT_FT_CR
|
|
endif # !ORTE_DISABLE_FULL_SUPPORT
|
|
|
|
distclean-local:
|
|
rm -f $(man_pages)
|