Welcome to mirror list, hosted at ThFree Co, Russian Federation.

regenerate-makefiles.sh « moses-cmd - github.com/moses-smt/mosesdecoder.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: e217cbbd9df2794714b5c03b0bcf45737dba1a5a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#!/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