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.
|
2004-11-22 01:38:40 +00:00
|
|
|
# $COPYRIGHT$
|
|
|
|
#
|
|
|
|
# Additional copyrights may follow
|
|
|
|
#
|
2004-08-06 20:23:57 +00:00
|
|
|
# $HEADER$
|
|
|
|
#
|
|
|
|
|
2006-04-29 02:16:41 +00:00
|
|
|
if OMPI_INSTALL_BINARIES
|
|
|
|
|
2005-09-30 13:32:39 +00:00
|
|
|
dist_pkgdata_DATA = help-orted.txt
|
2005-07-28 17:18:33 +00:00
|
|
|
|
2006-04-29 02:16:41 +00:00
|
|
|
bin_PROGRAMS = orted
|
|
|
|
|
|
|
|
endif
|
|
|
|
|
2005-07-02 15:06:47 +00:00
|
|
|
libs = \
|
2006-12-05 18:27:24 +00:00
|
|
|
$(top_builddir)/orte/libopen-rte.la
|
2004-08-06 20:23:57 +00:00
|
|
|
|
2006-09-14 21:29:51 +00:00
|
|
|
headers = \
|
|
|
|
orted.h
|
|
|
|
|
2005-03-14 20:57:21 +00:00
|
|
|
orted_SOURCES = \
|
2005-07-08 13:46:06 +00:00
|
|
|
$(headers) \
|
2005-03-31 15:47:37 +00:00
|
|
|
orted.c
|
2004-08-06 20:23:57 +00:00
|
|
|
|
2006-01-16 01:48:03 +00:00
|
|
|
orted_LDADD = $(libs)
|
|
|
|
orted_LDFLAGS =
|
2005-03-14 20:57:21 +00:00
|
|
|
orted_DEPENDENCIES = $(libs)
|
2004-08-06 20:23:57 +00:00
|
|
|
|
2005-07-08 13:46:06 +00:00
|
|
|
|
|
|
|
# Conditionally install the header files
|
|
|
|
|
|
|
|
if WANT_INSTALL_HEADERS
|
|
|
|
ortedir = $(includedir)/openmpi/orte/tools/orted
|
|
|
|
orte_HEADERS = $(headers)
|
|
|
|
else
|
|
|
|
ortedir = $(includedir)
|
|
|
|
endif
|