2004-08-25 06:01:35 +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-25 06:01:35 +04:00
|
|
|
# $HEADER$
|
|
|
|
#
|
|
|
|
|
|
|
|
include $(top_srcdir)/config/Makefile.options
|
|
|
|
|
2005-07-29 03:48:46 +04:00
|
|
|
EXTRA_DIST = $(pkgdata_DATA)
|
|
|
|
pkgdata_DATA = help-orteconsole.txt
|
|
|
|
|
2005-07-02 19:06:47 +04:00
|
|
|
libs = \
|
|
|
|
$(top_builddir)/orte/liborte.la \
|
|
|
|
$(top_builddir)/opal/libopal.la
|
2004-08-25 06:01:35 +04:00
|
|
|
|
2005-07-29 21:57:35 +04:00
|
|
|
headers = orteconsole.h
|
|
|
|
|
2004-08-25 06:01:35 +04:00
|
|
|
bin_PROGRAMS = \
|
2005-03-14 23:57:21 +03:00
|
|
|
orteconsole
|
2004-08-25 06:01:35 +04:00
|
|
|
|
2005-03-14 23:57:21 +03:00
|
|
|
orteconsole_SOURCES = \
|
2005-07-29 21:57:35 +04:00
|
|
|
$(headers) \
|
2005-03-14 23:57:21 +03:00
|
|
|
orteconsole.c
|
2004-08-25 06:01:35 +04:00
|
|
|
|
2005-03-14 23:57:21 +03:00
|
|
|
orteconsole_LDADD = $(libs)
|
|
|
|
orteconsole_DEPENDENCIES = $(libs)
|
2004-08-25 06:01:35 +04:00
|
|
|
|
2005-07-29 21:57:35 +04:00
|
|
|
if WANT_INSTALL_HEADERS
|
|
|
|
ortedir = $(includedir)/openmpi/orte/tools/orteconsole
|
|
|
|
orte_HEADERS = $(headers)
|
|
|
|
else
|
|
|
|
ortedir = $(includedir)
|
|
|
|
endif
|
|
|
|
|
2004-08-25 06:01:35 +04:00
|
|
|
clean-local:
|
|
|
|
test -z "$(OMPI_CXX_TEMPLATE_REPOSITORY)" || $(RM) -rf $(OMPI_CXX_TEMPLATE_REPOSITORY)
|