marian/tests/Makefile
2016-10-11 16:14:59 +00:00

21 lines
210 B
Makefile

#!/bin/bash
dir_guard=$(mkdir -p $(@D))
second=$(word 2, $^)
.SECONDARY:
SRC=en
TRG=de
all: test
test: model
python test.py
model:
../scripts/download_models.py -w model -m $(SRC)-$(TRG)
.PHONY: test