From ed697134ca64f9a6606fbf8f7241857447a5b8e5 Mon Sep 17 00:00:00 2001 From: Roman Grundkiewicz Date: Thu, 2 Nov 2017 10:36:29 +0000 Subject: Add BRANCH variable in Makefile --- Makefile | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'Makefile') diff --git a/Makefile b/Makefile index 45aec4f..8980396 100644 --- a/Makefile +++ b/Makefile @@ -5,6 +5,8 @@ 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 +BRANCH=master + .PHONY: tools/marian-dev tools/marian install tools models data run .SECONDARY: @@ -21,7 +23,7 @@ tools: tools/marian git -C $@/subword-nmt pull || git clone $(GIT_SUBWORD_NMT) $@/subword-nmt tools/marian: - git -C $@ pull || git clone $(GIT_MARIAN_DEV) $@ + git -C $@ pull || git clone $(GIT_MARIAN_DEV) -b $(BRANCH) $@ mkdir -p $@/build && cd $@/build && cmake .. -DCOMPILE_EXAMPLES=ON -DUSE_CUDNN=ON && make -j$(THREADS) models: -- cgit v1.2.3