words/Makefile

11 lines
254 B
Makefile
Raw Normal View History

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