10 lines
203 B
Makefile
10 lines
203 B
Makefile
WORD_LENGTH=5
|
|
MIN_FREQUENCY=3
|
|
SOURCE_WORDLIST=1_1_all_fullalpha.txt
|
|
|
|
wordlist.js:
|
|
./scripts/gen_wordlist.py ${SOURCE_WORDLIST} ${WORD_LENGTH} ${MIN_FREQUENCY} > wordlist.js
|
|
|
|
clean:
|
|
rm -rf wordlist.js
|