2006-06-29 02:06:13 +04: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.
|
|
|
|
# Copyright (c) 2004-2005 High Performance Computing Center Stuttgart,
|
|
|
|
# University of Stuttgart. All rights reserved.
|
|
|
|
# Copyright (c) 2004-2005 The Regents of the University of California.
|
|
|
|
# All rights reserved.
|
2008-03-22 05:04:05 +03:00
|
|
|
# Copyright (c) 2008 Cisco Systems, Inc. All rights reserved.
|
2008-08-02 01:14:37 +04:00
|
|
|
# Copyright (c) 2008 Sun Microsystems, Inc. All rights reserved.
|
2006-06-29 02:06:13 +04:00
|
|
|
# $COPYRIGHT$
|
|
|
|
#
|
|
|
|
# Additional copyrights may follow
|
|
|
|
#
|
|
|
|
# $HEADER$
|
|
|
|
#
|
|
|
|
|
2008-08-02 01:14:37 +04:00
|
|
|
include $(top_srcdir)/Makefile.man-page-rules
|
|
|
|
|
|
|
|
man_pages = orte-ps.1
|
2008-08-07 23:20:40 +04:00
|
|
|
EXTRA_DIST = $(man_pages:.1=.1in)
|
2008-08-02 01:14:37 +04:00
|
|
|
|
2008-06-19 18:46:10 +04:00
|
|
|
if !ORTE_DISABLE_FULL_SUPPORT
|
2006-10-19 22:34:17 +04:00
|
|
|
if OMPI_INSTALL_BINARIES
|
|
|
|
|
2006-06-29 02:06:13 +04:00
|
|
|
bin_PROGRAMS = orte-ps
|
|
|
|
|
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
|
2006-06-29 02:06:13 +04:00
|
|
|
|
2008-03-22 05:04:05 +03:00
|
|
|
dist_pkgdata_DATA = help-orte-ps.txt
|
2006-06-29 02:06:13 +04:00
|
|
|
|
2006-10-19 22:34:17 +04:00
|
|
|
endif # OMPI_INSTALL_BINARIES
|
2008-03-22 05:04:05 +03:00
|
|
|
|
|
|
|
orte_ps_SOURCES = orte-ps.c
|
|
|
|
orte_ps_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
|
|
|
|
2008-08-07 23:20:40 +04:00
|
|
|
distclean-local:
|
2008-08-02 01:14:37 +04:00
|
|
|
rm -f $(man_pages)
|