forked from ETS-Next-Gen/AWE_Base
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMakefile
More file actions
26 lines (20 loc) · 692 Bytes
/
Makefile
File metadata and controls
26 lines (20 loc) · 692 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
PACKAGES := AWE_Components AWE_LanguageTool AWE_Lexica AWE_SpellCorrect AWE_Workbench holmes-extractor-expandable
.PHONY: all download update install
all: download install
download:
@for package in $(PACKAGES); do \
echo "Downloading $${package}"; \
git clone https://github.com/ETS-Next-Gen/$${package}; \
done
update:
@for package in $(PACKAGES); do \
echo "Updating $${package}"; \
cd $${package} && git pull; cd .. ;\
done
install:
@for package in $(PACKAGES); do \
echo "Installing $${package}"; \
cd $${package} && pip install -e .; cd .. ; \
done
run_language_tool:
echo "from awe_languagetool import languagetoolServer; languagetoolServer.runServer()"|python