mirror of
https://github.com/moses-smt/mosesdecoder.git
synced 2024-11-10 19:44:59 +03:00
50 lines
1.5 KiB
Plaintext
50 lines
1.5 KiB
Plaintext
max-factors = [ option.get "max-factors" : 4 : 4 ] ;
|
|
path-constant FACTOR-LOG : bin/factor.log ;
|
|
update-if-changed $(FACTOR-LOG) $(max-factors) ;
|
|
max-factors = <define>MAX_NUM_FACTORS=$(max-factors) <dependency>$(FACTOR-LOG) ;
|
|
|
|
alias headers : ../util//kenutil : : : $(max-factors) ;
|
|
|
|
alias ThreadPool : ThreadPool.cpp ;
|
|
|
|
if [ option.get "with-synlm" : no : yes ] = yes
|
|
{
|
|
lib m ;
|
|
obj SyntacticLanguageModel.o : SyntacticLanguageModel.cpp headers : <include>$(TOP)/synlm/hhmm/rvtl/include <include>$(TOP)/synlm/hhmm/wsjparse/include ;
|
|
alias synlm : SyntacticLanguageModel.o m : : : <define>HAVE_SYNLM ;
|
|
} else {
|
|
alias synlm ;
|
|
}
|
|
|
|
local have-clock = [ SHELL "bash -c \"g++ -dM -x c++ -E /dev/null -include time.h 2>/dev/null |grep CLOCK_MONOTONIC\"" : exit-status ] ;
|
|
if $(have-clock[2]) = 0 {
|
|
#required for clock_gettime. Threads already have rt.
|
|
lib rt : : <runtime-link>static:<link>static <runtime-link>shared:<link>shared ;
|
|
} else {
|
|
alias rt ;
|
|
}
|
|
|
|
lib moses :
|
|
[ glob
|
|
*.cpp
|
|
DynSAInclude/*.cpp
|
|
Scope3Parser/*.cpp
|
|
CYKPlusParser/*.cpp
|
|
RuleTable/*.cpp
|
|
fuzzy-match/*.cpp
|
|
Incremental/*.cpp
|
|
: #exceptions
|
|
ThreadPool.cpp
|
|
SyntacticLanguageModel.cpp
|
|
*Test.cpp Mock*.cpp
|
|
]
|
|
headers LM//LM CompactPT//CompactPT synlm ThreadPool rt
|
|
..//search ../util/double-conversion//double-conversion ..//z ../OnDiskPt//OnDiskPt ;
|
|
|
|
alias headers-to-install : [ glob-tree *.h ] ;
|
|
|
|
import testing ;
|
|
|
|
unit-test moses_test : [ glob *Test.cpp Mock*.cpp ] moses headers ..//z ../OnDiskPt//OnDiskPt ..//boost_unit_test_framework ;
|
|
|