I configure LAM 7.0 with
./configure --with-rsh="ssh -x" --prefix="/usr/local/lam-7.0"
And "make all" reports something like
ln -s ../../tools/wrappers/wrap.cc wrap_f77.cc
if g++ -DHAVE_CONFIG_H -I. -I. -I../../share/include -DLAM_PREFIX="\"/usr/local/lam-7.0\"" -DLAM_INCDIR="\"/usr/local/lam-7.0/include\"" -DLAM_LIBDIR="\"/usr/local/lam-7.0/lib\"" -I../../share/include -DLAM_BUILDING=1 -pthread -O3 -fexceptions -pthread -MT wrap_f77.o -MD -MP -MF ".deps/wrap_f77.Tpo" \
-c -o wrap_f77.o `test -f 'wrap_f77.cc' || echo './'`wrap_f77.cc; \
then mv ".deps/wrap_f77.Tpo" ".deps/wrap_f77.Po"; \
else rm -f ".deps/wrap_f77.Tpo"; exit 1; \
fi
ln -s ../../tools/wrappers/wrap_engine.cc wrap_engine_f77.cc
if g++ -DHAVE_CONFIG_H -I. -I. -I../../share/include -DLAM_PREFIX="\"/usr/local/lam-7.0\"" -DLAM_INCDIR="\"/usr/local/lam-7.0/include\"" -DLAM_LIBDIR="\"/usr/local/lam-7.0/lib\"" -I../../share/include -DLAM_BUILDING=1 -pthread -O3 -fexceptions -pthread -MT wrap_engine_f77.o -MD -MP -MF ".deps/wrap_engine_f77.Tpo" \
-c -o wrap_engine_f77.o `test -f 'wrap_engine_f77.cc' || echo './'`wrap_engine_f77.cc; \
then mv ".deps/wrap_engine_f77.Tpo" ".deps/wrap_engine_f77.Po"; \
else rm -f ".deps/wrap_engine_f77.Tpo"; exit 1; \
fi
/bin/sh ../../libtool --mode=link g++ -O3 -fexceptions -pthread -fexceptions -o mpif77 mpif77.o wrap_f77.o wrap_engine_f77.o ../../share/liblam.la -lutil -pthread
g++ -O3 -fexceptions -pthread -fexceptions -o mpif77 mpif77.o wrap_f77.o wrap_engine_f77.o -pthread ../../share/.libs/liblam.a -lutil
make[2]: Leaving directory `/usr/local/lam-7.0/tools/wrappers'
make[2]: Entering directory `/usr/local/lam-7.0/tools'
make[2]: Nothing to be done for `all-am'.
make[2]: Leaving directory `/usr/local/lam-7.0/tools'
make[1]: Leaving directory `/usr/local/lam-7.0/tools'
Making all in etc
make[1]: Entering directory `/usr/local/lam-7.0/etc'
make[1]: *** No rule to make target `lam-conf.lamd', needed by `all-am'. Stop.
make[1]: Leaving directory `/usr/local/lam-7.0/etc'
make: *** [all-recursive] Error 1
I wonder what's going on?
|