2005-05-13 01:44:23 +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.
|
2009-04-24 20:39:33 +04:00
|
|
|
# Copyright (c) 2004-2009 High Performance Computing Center Stuttgart,
|
2005-05-13 01:44:23 +04: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.
|
2005-05-13 01:44:23 +04: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
|
|
|
|
2013-01-28 03:25:10 +04:00
|
|
|
man_pages = orte-server.1
|
2013-02-28 21:31:47 +04:00
|
|
|
EXTRA_DIST = $(man_pages:.1=.1in)
|
2008-08-02 01:14:37 +04:00
|
|
|
|
2006-04-29 06:16:41 +04:00
|
|
|
if OMPI_INSTALL_BINARIES
|
|
|
|
|
2013-01-28 03:25:10 +04:00
|
|
|
bin_PROGRAMS = orte-server
|
2008-03-22 05:04:05 +03:00
|
|
|
|
2014-01-08 02:11:15 +04:00
|
|
|
dist_ompidata_DATA = help-orte-server.txt
|
2005-08-04 21:40:22 +04:00
|
|
|
|
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-04-29 06:16:41 +04:00
|
|
|
|
2008-06-18 07:15:56 +04:00
|
|
|
endif # OMPI_INSTALL_BINARIES
|
2006-04-29 06:16:41 +04:00
|
|
|
|
2013-01-28 03:25:10 +04:00
|
|
|
orte_server_SOURCES = orte-server.c
|
|
|
|
orte_server_LDADD = $(top_builddir)/orte/libopen-rte.la $(top_builddir)/opal/libopen-pal.la
|
2008-02-28 04:57:57 +03:00
|
|
|
|
2008-08-07 23:20:40 +04:00
|
|
|
distclean-local:
|
2008-08-02 01:14:37 +04:00
|
|
|
rm -f $(man_pages)
|