diff --git a/Makefile b/Makefile index 2f7e522..c9b8d59 100644 --- a/Makefile +++ b/Makefile @@ -1,16 +1,9 @@ WORD_LENGTH=5 -MIN_FREQUENCY=9 +MIN_FREQUENCY=3 SOURCE_WORDLIST=1_1_all_fullalpha.txt -wordlist.js: english-words +wordlist.js: ./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 -