mosesdecoder/irstlm/regenerate-makefiles.sh
nicolabertoldi 041e6ed3c5 Changes to compilation scripts:
- irstlm/src/Makefile.am did not install some files
- irstlm/mkinstalldirs needed by OSX
- irstlm/regenerate-makefiles.sh substitutes 
  explicit calls of aclocal, autoconf and automake

Changes to scoring script used by MERT
- added the option ("-e") to compute BLEU wrt the
  "closest" reference length like in multi-bleu.perl
- now multi-bleu.perl manages 0 counts for ngram-statistics




git-svn-id: https://mosesdecoder.svn.sourceforge.net/svnroot/mosesdecoder/trunk@805 1f5c12ca-751b-0410-a591-d2e778427230
2006-09-01 14:54:41 +00:00

16 lines
250 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 --prefix=/path/to/irstlm"
echo " make -j 4"
echo