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