mosesdecoder/irstlm/regenerate-makefiles.sh
2007-02-15 01:49:37 +00:00

21 lines
372 B
Bash
Executable File

#!/bin/bash
function die () {
echo "$@" >&2
exit 1
}
echo "Calling aclocal..."
aclocal || die "aclocal failed"
echo "Calling autoconf..."
autoconf || die "autoconf failed"
echo "Calling automake..."
automake || die "automake failed"
echo
echo "You should now be able to configure and build:"
echo " ./configure --prefix=/path/to/irstlm"
echo " make -j 4"
echo