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

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