words/Makefile

10 lines
203 B
Makefile
Raw Normal View History

2022-01-27 19:14:29 +00:00
WORD_LENGTH=5
2022-01-27 20:17:13 +00:00
MIN_FREQUENCY=3
2022-01-27 19:14:29 +00:00
SOURCE_WORDLIST=1_1_all_fullalpha.txt
2022-01-27 20:17:13 +00:00
wordlist.js:
2022-01-27 19:14:29 +00:00
./scripts/gen_wordlist.py ${SOURCE_WORDLIST} ${WORD_LENGTH} ${MIN_FREQUENCY} > wordlist.js
2022-01-27 18:36:45 +00:00
clean:
rm -rf wordlist.js