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

github.com/moses-smt/mosesdecoder.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorjfouet <jfouet@1f5c12ca-751b-0410-a591-d2e778427230>2010-02-24 12:27:18 +0300
committerjfouet <jfouet@1f5c12ca-751b-0410-a591-d2e778427230>2010-02-24 12:27:18 +0300
commit7c1e287c7126c60d8d6f0bd8e22d4f8b647c3fa9 (patch)
tree98510648111ff7359a6fd2402553825a53ef7391 /regenerate-makefiles.sh
parent53c56df23e31360ce7804cb627ef7195ca0a4937 (diff)
Add configure options to link dynamically with libmoses
git-svn-id: https://mosesdecoder.svn.sourceforge.net/svnroot/mosesdecoder/trunk@2932 1f5c12ca-751b-0410-a591-d2e778427230
Diffstat (limited to 'regenerate-makefiles.sh')
-rwxr-xr-xregenerate-makefiles.sh8
1 files changed, 8 insertions, 0 deletions
diff --git a/regenerate-makefiles.sh b/regenerate-makefiles.sh
index 85f97f040..32d88bb55 100755
--- a/regenerate-makefiles.sh
+++ b/regenerate-makefiles.sh
@@ -30,6 +30,11 @@ then
AUTOCONF=`which autoconf`
fi
+if [ -z "$LIBTOOLIZE" ]
+then
+ LIBTOOLIZE=`which libtoolize`
+fi
+
echo "Calling $ACLOCAL..."
$ACLOCAL -I m4 || die "aclocal failed"
@@ -37,6 +42,9 @@ echo "Calling $AUTOCONF..."
$AUTOCONF || die "autoconf failed"
echo "Calling $AUTOMAKE..."
$AUTOMAKE || die "automake failed"
+echo "Calling $LIBTOOLIZE"
+$LIBTOOLIZE || die "libtoolize failed"
+
echo
echo "You should now be able to configure and build:"