2004-01-14 08:38:51 +00:00
|
|
|
#
|
2004-11-22 01:38:40 +00: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 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-01-14 08:38:51 +00:00
|
|
|
# $HEADER$
|
|
|
|
#
|
|
|
|
|
|
|
|
include $(top_srcdir)/config/Makefile.options
|
|
|
|
|
2004-11-06 15:16:11 +00:00
|
|
|
EXTRA_DIST = $(pkgdata_DATA)
|
2005-03-14 20:57:21 +00:00
|
|
|
pkgdata_DATA = help-orterun.txt
|
2004-11-06 15:16:11 +00:00
|
|
|
|
2004-09-09 15:23:41 +00:00
|
|
|
libs = $(top_builddir)/src/libmpi.la
|
2004-03-26 04:28:42 +00:00
|
|
|
|
2005-03-14 20:57:21 +00:00
|
|
|
bin_PROGRAMS = orterun
|
2004-08-07 20:07:25 +00:00
|
|
|
|
2005-03-14 20:57:21 +00:00
|
|
|
orterun_SOURCES = \
|
|
|
|
orterun.c
|
|
|
|
|
|
|
|
orterun_LDADD = $(libs)
|
|
|
|
orterun_DEPENDENCIES = $(libs)
|
2005-03-18 03:43:59 +00: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
|