2004-08-06 20:23:57 +00:00
|
|
|
#
|
2005-11-05 19:57:48 +00:00
|
|
|
# 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.
|
2004-11-28 20:09:25 +00:00
|
|
|
# Copyright (c) 2004-2005 High Performance Computing Center Stuttgart,
|
|
|
|
# University of Stuttgart. All rights reserved.
|
2005-03-24 12:43:37 +00:00
|
|
|
# Copyright (c) 2004-2005 The Regents of the University of California.
|
|
|
|
# All rights reserved.
|
2008-03-22 02:04:05 +00:00
|
|
|
# Copyright (c) 2007-2008 Cisco, Inc. All rights reserved.
|
2008-08-01 21:14:37 +00:00
|
|
|
# Copyright (c) 2008 Sun Microsystems, Inc. All rights reserved.
|
2004-11-22 01:38:40 +00:00
|
|
|
# $COPYRIGHT$
|
|
|
|
#
|
|
|
|
# Additional copyrights may follow
|
|
|
|
#
|
2004-08-06 20:23:57 +00:00
|
|
|
# $HEADER$
|
|
|
|
#
|
|
|
|
|
2008-08-01 21:14:37 +00:00
|
|
|
include $(top_srcdir)/Makefile.man-page-rules
|
|
|
|
|
|
|
|
man_pages = orted.1
|
2008-08-07 19:20:40 +00:00
|
|
|
EXTRA_DIST = $(man_pages:.1=.1in)
|
2008-08-01 21:14:37 +00:00
|
|
|
|
2008-06-19 14:46:10 +00:00
|
|
|
if !ORTE_DISABLE_FULL_SUPPORT
|
2006-04-29 02:16:41 +00:00
|
|
|
if OMPI_INSTALL_BINARIES
|
|
|
|
|
|
|
|
bin_PROGRAMS = orted
|
|
|
|
|
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
|
2006-04-29 02:16:41 +00:00
|
|
|
|
2008-03-22 02:04:05 +00:00
|
|
|
endif # OMPI_INSTALL_BINARIES
|
2004-08-06 20:23:57 +00:00
|
|
|
|
2008-03-25 13:41:09 +00:00
|
|
|
orted_SOURCES = orted.c
|
|
|
|
# the following empty orted_LDFLAGS is used
|
|
|
|
# so that the orted can be compiled statically
|
|
|
|
# by simply changing the value of this from
|
|
|
|
# nothing to -all-static in the Makefile.in
|
|
|
|
# nice for systems that don't have all the shared
|
|
|
|
# libraries on the computes
|
|
|
|
orted_LDFLAGS =
|
2008-03-22 02:04:05 +00:00
|
|
|
orted_LDADD = $(top_builddir)/orte/libopen-rte.la
|
2008-06-19 14:46:10 +00:00
|
|
|
|
|
|
|
endif # !ORTE_DISABLE_FULL_SUPPORT
|
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)
|