verb-master

web application to practice verb conjugations for the korean language
git clone git://brookjeynes.dev/bjeynes/verb-master.git
Log | Files | Refs | README | LICENSE

Makefile (340B)


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