From 38d0ec2017e66d79c8f523d5727f2028af09d292 Mon Sep 17 00:00:00 2001 From: Alvie Rahman Date: Thu, 27 Jan 2022 20:17:13 +0000 Subject: [PATCH] update Makefile --- Makefile | 11 ++--------- 1 file changed, 2 insertions(+), 9 deletions(-) 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 -