2004-08-07 00:23:57 +04:00
|
|
|
#
|
2005-11-05 22:57:48 +03: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 23:09:25 +03:00
|
|
|
# Copyright (c) 2004-2005 High Performance Computing Center Stuttgart,
|
|
|
|
# University of Stuttgart. All rights reserved.
|
2005-03-24 15:43:37 +03:00
|
|
|
# Copyright (c) 2004-2005 The Regents of the University of California.
|
|
|
|
# All rights reserved.
|
2008-03-22 05:04:05 +03:00
|
|
|
# Copyright (c) 2007-2008 Cisco, Inc. All rights reserved.
|
2008-08-02 01:14:37 +04:00
|
|
|
# Copyright (c) 2008 Sun Microsystems, Inc. All rights reserved.
|
2004-11-22 04:38:40 +03:00
|
|
|
# $COPYRIGHT$
|
|
|
|
#
|
|
|
|
# Additional copyrights may follow
|
|
|
|
#
|
2004-08-07 00:23:57 +04:00
|
|
|
# $HEADER$
|
|
|
|
#
|
|
|
|
|
2008-08-02 01:14:37 +04:00
|
|
|
include $(top_srcdir)/Makefile.man-page-rules
|
|
|
|
|
|
|
|
man_pages = orted.1
|
|
|
|
EXTRA_DIST = $(man_pages) $(man_pages:.1=.1in)
|
|
|
|
|
2008-06-19 18:46:10 +04:00
|
|
|
if !ORTE_DISABLE_FULL_SUPPORT
|
2006-04-29 06:16:41 +04:00
|
|
|
if OMPI_INSTALL_BINARIES
|
|
|
|
|
|
|
|
bin_PROGRAMS = orted
|
|
|
|
|
2008-08-02 01:14:37 +04:00
|
|
|
man_MANS = $(man_pages)
|
2006-04-29 06:16:41 +04:00
|
|
|
|
2008-03-22 05:04:05 +03:00
|
|
|
endif # OMPI_INSTALL_BINARIES
|
2004-08-07 00:23:57 +04:00
|
|
|
|
2008-03-25 16:41:09 +03: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 05:04:05 +03:00
|
|
|
orted_LDADD = $(top_builddir)/orte/libopen-rte.la
|
2008-06-19 18:46:10 +04:00
|
|
|
|
|
|
|
endif # !ORTE_DISABLE_FULL_SUPPORT
|
2008-08-02 01:14:37 +04:00
|
|
|
|
|
|
|
maintainer-clean-local:
|
|
|
|
rm -f $(man_pages)
|