-
Notifications
You must be signed in to change notification settings - Fork 15
/
Makefile
31 lines (23 loc) · 854 Bytes
/
Makefile
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
setup:
pip install uv
uv sync
sample:
uv run python ./bin/convert_all.py --input_folder=dict --output_folder=output --extension=tab --filter=C
echo "Release sample"
all:
cp -r dict/* ext-dict/
uv run python ./bin/convert_all.py --input_folder=ext-dict --output_folder=ext-output --extension=tab
echo "Release all"
test:
echo "Run test the venv"
uv run python ./bin/test.py
dict_stats_new:
uv run python ./bin/dict_summary.py --dict_dir=dict --output_dir=output --read_only=no
dict_stats_old:
uv run python ./bin/dict_summary.py --dict_dir=dict --output_dir=output --read_only=yes
dict_ext_stats_new:
uv run python ./bin/dict_summary.py --dict_dir=ext-dict --output_dir=ext-output --read_only=no
dict_ext_stats_old:
uv run python ./bin/dict_summary.py --dict_dir=ext-dict --output_dir=ext-output --read_only=yes
clean:
git clean -fdx