2004-01-14 11:38:51 +03: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-01-14 11:38:51 +03:00
|
|
|
# $HEADER$
|
|
|
|
#
|
|
|
|
|
|
|
|
include $(top_srcdir)/config/Makefile.options
|
|
|
|
|
2004-11-06 18:16:11 +03:00
|
|
|
EXTRA_DIST = $(pkgdata_DATA)
|
2005-03-14 23:57:21 +03:00
|
|
|
pkgdata_DATA = help-orterun.txt
|
2004-11-06 18:16:11 +03:00
|
|
|
|
2005-07-02 19:06:47 +04:00
|
|
|
libs = \
|
|
|
|
$(top_builddir)/orte/liborte.la \
|
|
|
|
$(top_builddir)/opal/libopal.la
|
2004-03-26 07:28:42 +03:00
|
|
|
|
2005-03-14 23:57:21 +03:00
|
|
|
bin_PROGRAMS = orterun
|
2004-08-08 00:07:25 +04:00
|
|
|
|
2005-03-14 23:57:21 +03:00
|
|
|
orterun_SOURCES = \
|
2005-08-31 20:15:59 +04:00
|
|
|
main.c \
|
2005-08-30 21:29:43 +04:00
|
|
|
orterun.c \
|
2005-08-31 15:01:28 +04:00
|
|
|
totalview.c \
|
|
|
|
totalview.h
|
2005-03-14 23:57:21 +03:00
|
|
|
|
|
|
|
orterun_LDADD = $(libs)
|
|
|
|
orterun_DEPENDENCIES = $(libs)
|
2005-03-18 06:43:59 +03:00
|
|
|
|
|
|
|
install-exec-hook:
|
|
|
|
(cd $(DESTDIR)$(bindir); rm -f mpirun; ln -s orterun mpirun)
|
|
|
|
(cd $(DESTDIR)$(bindir); rm -f mpiexec; ln -s orterun mpiexec)
|
|
|
|
|
|
|
|
uninstall-local:
|
|
|
|
rm -f $(DESTDIR)$(bindir)/mpirun \
|
|
|
|
$(DESTDIR)$(bindir)/mpiexec
|