verb-master

Practice different formality levels, tenses, and grammar forms for Korean verbs
git clone git@knot.brookjeynes.dev:did:plc:qr52v73pdmgppmvnpjwa5viw
Log | Files | Refs | README | LICENSE

Makefile (319B)


      1 # frequency list from https://kimchi-reader.app/explore/freq/words
      2 
      3 GENERATED = data/kimchi-verb-frequencies.js
      4 
      5 $(GENERATED): data/word-frequency-2026-05-25.json
      6 	printf "/** @type {DB} */\n" > $@ && \
      7 		printf "const kimchiFrequency = " >> $@ && \
      8 		cat $< >> $@ && \
      9 		printf "export default kimchiFrequency;" >> $@