-
-
Notifications
You must be signed in to change notification settings - Fork 210
Expand file tree
/
Copy pathMakefile
More file actions
38 lines (24 loc) · 571 Bytes
/
Makefile
File metadata and controls
38 lines (24 loc) · 571 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
27
28
29
30
31
32
33
34
35
36
37
38
install:
./install.sh
install-no-model:
./install.sh --no-model
pip-install:
pip3 install .
pip-uninstall:
python3 setup.py --uninstall
dev-install:
./install.sh --dev --pip
dev-install-no-model:
./install.sh --dev --pip --no-model
dev-pip-install:
pip3 install -e .
dev-pip-uninstall:
python3 setup.py develop --uninstall
docker-pull:
docker pull dragoncomputer/dragonfire
docker-run:
docker run dragonfire
build-ext-inplace:
python3 setup.py build_ext --inplace
clean:
rm -rf *.out *.bin *.exe *.o *.a *.so build *.egg-info *.db .pytest_cache