mosesdecoder/regenerate-makefiles.sh

16 lines
253 B
Bash
Executable File

#!/bin/sh
echo "Calling aclocal..."
aclocal
echo "Calling autoconf..."
autoconf
echo "Calling automake..."
automake
echo
echo "You should now be able to configure and build:"
echo " ./configure --with-srilm=/path/to/srilm"
echo " make -j 4"
echo