misc jamming

This commit is contained in:
Barry Haddow 2011-11-23 12:10:45 +00:00
parent ccd4964a91
commit f948f32c88
2 changed files with 11 additions and 1 deletions

View File

@ -34,7 +34,7 @@
#--clean to clean
#Other compilers might work, but this stops bjam from whining.
using gcc ;
#using gcc ;
path-constant TOP : . ;
@ -93,4 +93,5 @@ install dist :
CreateOnDisk/src//CreateOnDisk
mert//programs
server//mosesserver
misc//programs
: <location>$(install-location) <install-type>EXE <install-dependencies>on <link>shared:<dll-path>$(install-location) <link>shared:<install-type>LIB ;

9
misc/Jamfile Normal file
View File

@ -0,0 +1,9 @@
exe processPhraseTable : GenerateTuples.cpp processPhraseTable.cpp ../moses/src//moses ;
exe processLexicalTable : processLexicalTable.cpp ../moses/src//moses ../OnDiskPt/src//OnDiskPt ;
exe queryPhraseTable : queryPhraseTable.cpp ../moses/src//moses ;
exe queryLexicalTable : queryLexicalTable.cpp ../moses/src//moses ../OnDiskPt/src//OnDiskPt ;
alias programs : processPhraseTable processLexicalTable queryPhraseTable queryLexicalTable ;