Hi,
As noted by Jeremie, you should try manually in the parallel folder
parallel/parallel_v6p0/sources
> maktel all install
But I think that you should check before that LIBS_MPI is well-defined. Open-Mpi flags for linking can be viewed by :
> mpif90 -showme:link
And replace LIBS_MPI in function of open-mpi settings :
LIBS_MPI="$(shell mpif90 -showme:link)" # as a dynamic way
or replacing directly the old flags
LIBS_MPI="-L/usr/openmpi/lib -lmpi_f90..." # more portable ?
For example, our flags with open-mpi on a cluster :
LIBS_MPI ="-L/usr/openmpi/lib -lmpi_f90 -lmpi_f77 -lmpi - lopen-rte -lopen-pal -ld1 -Wl,--export-dynamic..."
REF :
www.open-mpi.org/doc/v1.4/man1/mpif90.1.php
REF :
www.open-mpi.org/faq/?category=mpi-apps
If mpirun (provided by open-mpi) is in your path, then :
RUN_MPI="mpirun -machinefile mpirun.txt -np <N> <EXE>"
is sufficient.
Best regards,