Skip to content

Commit

Permalink
Merge pull request #30 from tokuhirom/use-python3
Browse files Browse the repository at this point in the history
use python3
  • Loading branch information
tokuhirom authored Aug 7, 2024
2 parents 57b4cf9 + c19579f commit 483dd25
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -19,19 +19,19 @@ dat/grepped.txt: dat/jawiki-latest-pages-articles.xml
grep -E "<title>.*</title>|'''[』|((]" dat/jawiki-latest-pages-articles.xml > dat/grepped.txt

dat/scanned.tsv: dat/grepped.txt bin/scanner.py jawiki/scanner.py
python bin/scanner.py
python3 bin/scanner.py

dat/pre_validated.tsv: dat/scanned.tsv bin/pre_validator.py jawiki/pre_validate.py
python bin/pre_validator.py
python3 bin/pre_validator.py

dat/converted.tsv: dat/pre_validated.tsv bin/converter.py jawiki/converter.py jawiki/hojin.py jawiki/jachars.py
python bin/converter.py
python3 bin/converter.py

dat/post_validated.tsv: dat/converted.tsv bin/post_validator.py jawiki/post_validate.py user_simpledic.csv
python bin/post_validator.py
python3 bin/post_validator.py

SKK-JISYO.jawiki: dat/post_validated.tsv bin/makedict.py jawiki/skkdict.py
python bin/makedict.py /usr/share/skk/SKK-JISYO.L /usr/share/skk/SKK-JISYO.jinmei /usr/share/skk/SKK-JISYO.geo
python3 bin/makedict.py /usr/share/skk/SKK-JISYO.L /usr/share/skk/SKK-JISYO.jinmei /usr/share/skk/SKK-JISYO.geo

.PHONY: all test check

0 comments on commit 483dd25

Please sign in to comment.