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

regenerate-makefiles.sh « moses - github.com/moses-smt/mosesdecoder.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 6c78e2b3bde4af33a0269b68071597252ad02d13 (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 "   ./configure --with-boost=/home/ws06/cdyer/boost-stage --with-srilm=/home/ws06/cdyer/srilm"
echo "   make -j 4"
echo