17 lines
301 B
Makefile
17 lines
301 B
Makefile
WORD_LENGTH=5
|
|
MIN_FREQUENCY=9
|
|
SOURCE_WORDLIST=1_1_all_fullalpha.txt
|
|
|
|
wordlist.js: english-words
|
|
./scripts/gen_wordlist.py ${SOURCE_WORDLIST} ${WORD_LENGTH} ${MIN_FREQUENCY} > wordlist.js
|
|
|
|
english-words: .SUBMODULES
|
|
|
|
clean:
|
|
rm -rf wordlist.js
|
|
|
|
.SUBMODULES:
|
|
git submodule init
|
|
git submodule update
|
|
|