2004-01-14 11:38:51 +03:00
|
|
|
#
|
|
|
|
# $HEADER$
|
|
|
|
#
|
|
|
|
|
|
|
|
include $(top_srcdir)/config/Makefile.options
|
|
|
|
|
2004-09-09 19:23:41 +04:00
|
|
|
libs = $(top_builddir)/src/libmpi.la
|
2004-03-26 07:28:42 +03:00
|
|
|
|
2004-09-20 13:28:19 +04:00
|
|
|
bin_PROGRAMS = mpirun
|
2004-08-08 00:07:25 +04:00
|
|
|
|
2004-09-20 13:28:19 +04:00
|
|
|
mpirun_SOURCES = \
|
|
|
|
mpirun.c
|
2004-09-09 19:23:41 +04:00
|
|
|
|
2004-09-20 13:28:19 +04:00
|
|
|
mpirun_LDADD = $(libs)
|
|
|
|
mpirun_DEPENDENCIES = $(mpirun_LDADD)
|
|
|
|
|
|
|
|
# JMS Temporary hack for those who can't help themselves from typing
|
|
|
|
# "mpirun2" :-)
|
|
|
|
install-exec-hook:
|
|
|
|
(cd $(DESTDIR)$(bindir); rm -f mpirun2; ln -s mpirun mpirun2)
|
|
|
|
|
|
|
|
uninstall-local:
|
|
|
|
rm -f $(DESTDIR)$(bindir)/mpirun2
|