mosesdecoder/moses-cmd/regenerate-makefiles.sh
2006-07-14 16:19:29 +00:00

13 lines
318 B
Bash
Executable File

#!/bin/sh
echo "Calling autoconf..."
autoconf
echo "Calling automake..."
automake
echo
echo "You should now be able to configure and build:"
echo " env LDFLAGS=-static ./configure --with-boost=/home/ws06/cdyer/boost-stage --with-srilm=/home/ws06/cdyer/srilm --with-moses=\`pwd\`/../moses"
echo " make -j 4"
echo