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

github.com/marian-nmt/marian-regression-tests.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRoman Grundkiewicz <rgrundki@exseed.ed.ac.uk>2017-09-28 13:58:04 +0300
committerRoman Grundkiewicz <rgrundki@exseed.ed.ac.uk>2017-09-28 13:58:04 +0300
commitfab45d6672a586c404aaf909c4a86a1ad910d43f (patch)
tree29664469f0490084974f3f93a42cc30a8dffbf24 /Makefile
parentd04b009b75877173075cd6d39533fba0208903c7 (diff)
Add make run task
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile5
1 files changed, 4 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 74f7800..d153d4e 100644
--- a/Makefile
+++ b/Makefile
@@ -5,7 +5,7 @@ GIT_MARIAN=http://github.com/marian-nmt/marian.git
GIT_MOSES_SCRIPTS=http://github.com/marian-nmt/moses-scripts.git
GIT_SUBWORD_NMT=http://github.com/rsennrich/subword-nmt.git
-.PHONY: tools/marian-dev tools/marian install models
+.PHONY: tools/marian-dev tools/marian install tools models run
.SECONDARY:
@@ -13,6 +13,9 @@ GIT_SUBWORD_NMT=http://github.com/rsennrich/subword-nmt.git
install: tools models
+run: install
+ bash ./run_mrt.sh
+
tools: tools/marian
git -C $@/moses-scripts pull || git clone $(GIT_MOSES_SCRIPTS) $@/moses-scripts
git -C $@/subword-nmt pull || git clone $(GIT_SUBWORD_NMT) $@/subword-nmt