words/Makefile

17 lines
301 B
Makefile
Raw Normal View History

2022-01-27 19:14:29 +00:00
WORD_LENGTH=5
MIN_FREQUENCY=9
SOURCE_WORDLIST=1_1_all_fullalpha.txt
2022-01-27 18:36:45 +00:00
wordlist.js: english-words
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
english-words: .SUBMODULES
clean:
rm -rf wordlist.js
.SUBMODULES:
git submodule init
git submodule update