Welcome to mirror list, hosted at ThFree Co, Russian Federation.

Jamfile « scripts - github.com/moses-smt/mosesdecoder.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: b76152d08bcc5d4ef97983aefb3b42b7545a5b84 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#See ../Jamroot for options.  
import option path ;

build-project training ;

prefix = [ option.get "prefix" ] ;
if $(prefix) {
  prefix = [ path.root $(prefix) [ path.pwd ] ] ;
  location = [ option.get "install-scripts" : : $(prefix)$(GITTAG)/scripts ] ;
} else {
  location = [ option.get "install-scripts" ] ;
}

if $(location) {
  location = [ path.root $(location) [ path.pwd ] ] ;
  install scripts : 
    [ glob-tree README *.js *.pl *.perl *.pm *.py *.sh *.php : tests regression-testing other bin ]
    [ glob share/nonbreaking_prefixes/* ems/example/*.* ems/example/data/* ems/web/* analysis/smtgui/* : ems/web/javascripts ]
    generic/fsa-sample.fsa
    ems/experiment.machines
    ems/experiment.meta
    : <install-source-root>. <location>$(location) ;
}