2004-08-07 00:23:57 +04:00
|
|
|
#
|
2004-11-22 04:38:40 +03:00
|
|
|
# Copyright (c) 2004-2005 The Trustees of Indiana University.
|
|
|
|
# All rights reserved.
|
|
|
|
# Copyright (c) 2004-2005 The Trustees of the University of Tennessee.
|
|
|
|
# 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.
|
2004-11-22 04:38:40 +03:00
|
|
|
# $COPYRIGHT$
|
|
|
|
#
|
|
|
|
# Additional copyrights may follow
|
|
|
|
#
|
2004-08-07 00:23:57 +04:00
|
|
|
# $HEADER$
|
|
|
|
#
|
|
|
|
|
2005-09-07 09:54:53 +04:00
|
|
|
|
2004-08-07 00:23:57 +04:00
|
|
|
|
2005-07-28 21:18:33 +04:00
|
|
|
EXTRA_DIST = $(pkgdata_DATA)
|
|
|
|
pkgdata_DATA = help-orted.txt
|
|
|
|
|
2004-08-07 00:23:57 +04:00
|
|
|
AM_CPPFLAGS = \
|
|
|
|
-DOMPI_PREFIX="\"$(prefix)\"" \
|
|
|
|
-DOMPI_BINDIR="\"$(bindir)\"" \
|
|
|
|
-DOMPI_LIBDIR="\"$(libdir)\"" \
|
|
|
|
-DOMPI_INCDIR="\"$(includedir)\"" \
|
|
|
|
-DOMPI_PKGLIBDIR="\"$(pkglibdir)\"" \
|
|
|
|
-DOMPI_SYSCONFDIR="\"$(sysconfdir)\"" \
|
|
|
|
-DOMPI_CONFIGURE_USER="\"@OMPI_CONFIGURE_USER@\"" \
|
|
|
|
-DOMPI_CONFIGURE_HOST="\"@OMPI_CONFIGURE_HOST@\"" \
|
|
|
|
-DOMPI_CONFIGURE_DATE="\"@OMPI_CONFIGURE_DATE@\"" \
|
|
|
|
-DOMPI_BUILD_CFLAGS="\"@CFLAGS@\"" \
|
|
|
|
-DOMPI_BUILD_CPPFLAGS="\"@CPPFLAGS@\"" \
|
|
|
|
-DOMPI_BUILD_CXXFLAGS="\"@CXXFLAGS@\"" \
|
|
|
|
-DOMPI_BUILD_CXXCPPFLAGS="\"@CXXCPPFLAGS@\"" \
|
|
|
|
-DOMPI_BUILD_FFLAGS="\"@FFLAGS@\"" \
|
|
|
|
-DOMPI_BUILD_FCFLAGS="\"@FCFLAGS@\"" \
|
|
|
|
-DOMPI_BUILD_LDFLAGS="\"@LDFLAGS@\"" \
|
|
|
|
-DOMPI_BUILD_LIBS="\"@LIBS@\""
|
|
|
|
|
2005-07-02 19:06:47 +04:00
|
|
|
libs = \
|
|
|
|
$(top_builddir)/orte/liborte.la \
|
|
|
|
$(top_builddir)/opal/libopal.la
|
2004-08-07 00:23:57 +04:00
|
|
|
|
2005-07-08 17:46:06 +04:00
|
|
|
headers = orted.h
|
|
|
|
|
2005-03-14 23:57:21 +03:00
|
|
|
bin_PROGRAMS = orted
|
|
|
|
orted_SOURCES = \
|
2005-07-08 17:46:06 +04:00
|
|
|
$(headers) \
|
2005-03-31 19:47:37 +04:00
|
|
|
orted.c
|
2004-08-07 00:23:57 +04:00
|
|
|
|
2005-03-14 23:57:21 +03:00
|
|
|
orted_LDADD = $(libs) $(LIBMPI_EXTRA_LIBS)
|
|
|
|
orted_LDFLAGS = $(LIBMPI_EXTRA_LDFLAGS)
|
|
|
|
orted_DEPENDENCIES = $(libs)
|
2004-08-07 00:23:57 +04:00
|
|
|
|
2005-07-08 17:46:06 +04:00
|
|
|
|
|
|
|
# Conditionally install the header files
|
|
|
|
|
|
|
|
if WANT_INSTALL_HEADERS
|
|
|
|
ortedir = $(includedir)/openmpi/orte/tools/orted
|
|
|
|
orte_HEADERS = $(headers)
|
|
|
|
else
|
|
|
|
ortedir = $(includedir)
|
|
|
|
endif
|