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:
authorHieu Hoang <hieuhoang@gmail.com>2012-11-14 17:43:04 +0400
committerHieu Hoang <hieuhoang@gmail.com>2012-11-14 17:43:04 +0400
commitf96b33de83d91214cba8ac0d457ec259224e2bd0 (patch)
treedbe9e618b700f09a5e9a6c12d773f84fe5de6ca4 /phrase-extract/Jamfile
parent6b3d69c5c4e16a2993b986175177bcafde5f61cc (diff)
only include moses root when compiling
Diffstat (limited to 'phrase-extract/Jamfile')
-rw-r--r--phrase-extract/Jamfile4
1 files changed, 2 insertions, 2 deletions
diff --git a/phrase-extract/Jamfile b/phrase-extract/Jamfile
index d66b311b3..e66ecb9b3 100644
--- a/phrase-extract/Jamfile
+++ b/phrase-extract/Jamfile
@@ -1,10 +1,10 @@
local most-deps = [ glob *.cpp : PhraseAlignment.cpp *Test.cpp *-main.cpp ] ;
#Build .o files with include path setting, reused.
for local d in $(most-deps) {
- obj $(d:B).o : $(d) : <include>. <include>.. ;
+ obj $(d:B).o : $(d) ;
}
#and stuff them into an alias.
-alias deps : $(most-deps:B).o ..//z ..//boost_iostreams ../moses//ThreadPool ../util//kenutil : <include>. <include>.. ;
+alias deps : $(most-deps:B).o ..//z ..//boost_iostreams ../moses//ThreadPool ../util//kenutil ;
#PhraseAlignment.cpp requires that main define some global variables.
#Build the mains that do not need these global variables.