Skip to content
Snippets Groups Projects
Commit c4fd2bf5 authored by Alexis Nasr's avatar Alexis Nasr
Browse files

fixed bug in ftb/Makefile

parent 38ae5877
No related branches found
No related tags found
No related merge requests found
...@@ -14,6 +14,7 @@ compile: ...@@ -14,6 +14,7 @@ compile:
$(MAKE) -C maca_lexer compile $(MAKE) -C maca_lexer compile
$(MAKE) -C maca_trans_tagger compile $(MAKE) -C maca_trans_tagger compile
$(MAKE) -C maca_trans_morpho compile $(MAKE) -C maca_trans_morpho compile
$(MAKE) -C maca_trans_lemmatizer compile
$(MAKE) -C maca_trans_parser compile $(MAKE) -C maca_trans_parser compile
# $(MAKE) -C maca_crf_tagger compile # $(MAKE) -C maca_crf_tagger compile
...@@ -22,13 +23,14 @@ install: ...@@ -22,13 +23,14 @@ install:
$(MAKE) -C maca_lexer install $(MAKE) -C maca_lexer install
$(MAKE) -C maca_trans_tagger install $(MAKE) -C maca_trans_tagger install
$(MAKE) -C maca_trans_morpho 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_trans_parser install
# $(MAKE) -C maca_crf_tagger install # $(MAKE) -C maca_crf_tagger install
# @tar -cvzf ./maca_datas.tgz bin # @tar -cvzf ./maca_datas.tgz bin
evaluation: evaluation:
$(MAKE) LANGUAGE=$(_LANG) CODE=$(_LANG) -C eval # $(MAKE) LANGUAGE=$(_LANG) CODE=$(_LANG) -C eval
$(MAKE) -C eval
clean: clean:
$(MAKE) -C data/morpho-lexicon clean $(MAKE) -C data/morpho-lexicon clean
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment