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:
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.