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:
authorredpony <redpony@1f5c12ca-751b-0410-a591-d2e778427230>2006-08-23 19:18:53 +0400
committerredpony <redpony@1f5c12ca-751b-0410-a591-d2e778427230>2006-08-23 19:18:53 +0400
commitb7ffa5f8b9c72b1fe009b933f45f8f0ed02c6623 (patch)
tree58e219ca425789ff999cc4811fba6e2a91eb8b17 /BUILD-INSTRUCTIONS
parent1700da00bfc1756b306d10c8a7051c4f06e679eb (diff)
make building moses/moses-cmd a single make command rather than two
git-svn-id: https://mosesdecoder.svn.sourceforge.net/svnroot/mosesdecoder/trunk@794 1f5c12ca-751b-0410-a591-d2e778427230
Diffstat (limited to 'BUILD-INSTRUCTIONS')
-rw-r--r--BUILD-INSTRUCTIONS22
1 files changed, 3 insertions, 19 deletions
diff --git a/BUILD-INSTRUCTIONS b/BUILD-INSTRUCTIONS
index d635d4aaa..f4ae16cd3 100644
--- a/BUILD-INSTRUCTIONS
+++ b/BUILD-INSTRUCTIONS
@@ -13,17 +13,7 @@ Build SRILM according to their release instructions. Make sure that
you DO NOT override the MACHINE_TYPE variable on the command line when
you do so, as this can lead to problems locating the library.
- Build the moses library:
-
- cd moses
- ./configure --with-srilm=/path/to/srilm
- make
-
- Build the moses binary:
-
- cd ../moses-cmd
- ./configure --with-moses=`pwd`/../moses --with-srilm=/path/to/srilm
- make
+ ./configure --with-srilm=/path/to/srilm
The resulting decoder binary will be moses-cmd/src/moses .
@@ -38,18 +28,12 @@ you do so, as this can lead to problems locating the library.
make
make install
- Build the moses library:
+ Build moses:
- cd moses
+ cd ..
./configure --with-irstlm=/path/to/irstlm
make
- Build the moses binary:
-
- cd ../moses-cmd
- ./configure --with-moses=`pwd`/../moses --with-irstlm=/path/to/irstlm
- make
-
The resulting decoder binary will be moses-cmd/src/moses .
--------------------------------------------------------------------------