From c4fd2bf54209487b350c9587c05b9d5491f8a3c3 Mon Sep 17 00:00:00 2001
From: Alexis Nasr <alexis.nasr@lif.univ-mrs.fr>
Date: Wed, 17 May 2017 14:30:24 +0200
Subject: [PATCH] fixed bug in ftb/Makefile

---
 ftb/Makefile | 6 ++++--
 1 file changed, 4 insertions(+), 2 deletions(-)

diff --git a/ftb/Makefile b/ftb/Makefile
index bf7b20e..c3cb09f 100644
--- a/ftb/Makefile
+++ b/ftb/Makefile
@@ -14,6 +14,7 @@ compile:
 	$(MAKE) -C maca_lexer compile
 	$(MAKE) -C maca_trans_tagger compile
 	$(MAKE) -C maca_trans_morpho compile
+	$(MAKE) -C maca_trans_lemmatizer compile
 	$(MAKE) -C maca_trans_parser compile
 #	$(MAKE) -C maca_crf_tagger compile
 
@@ -22,13 +23,14 @@ install:
 	$(MAKE) -C maca_lexer install
 	$(MAKE) -C maca_trans_tagger install
 	$(MAKE) -C maca_trans_morpho install
-	$(MAKE) -C maca_lemmatizer install
+	$(MAKE) -C maca_trans_lemmatizer install
 	$(MAKE) -C maca_trans_parser install
 #	$(MAKE) -C maca_crf_tagger install
 #	@tar -cvzf ./maca_datas.tgz bin
 
 evaluation:
-	$(MAKE) LANGUAGE=$(_LANG) CODE=$(_LANG) -C eval
+#	$(MAKE) LANGUAGE=$(_LANG) CODE=$(_LANG) -C eval
+	$(MAKE) -C eval
 
 clean:
 	$(MAKE) -C data/morpho-lexicon clean
-- 
GitLab