11 lines
173 B
Makefile
11 lines
173 B
Makefile
all: parse tag_srl
|
|
|
|
parse:
|
|
python3 main.py
|
|
|
|
tag_srl:
|
|
cd srl-20131216; ./scripts/parse_srl_only_mod.sh; cd -
|
|
|
|
tag_full:
|
|
cd srl-20131216 ./scripts/parser_full_mod.sh; cd -
|