mirror of
https://github.com/ElnuDev/rust-jmdict.git
synced 2025-05-12 01:45:52 -07:00
There is about four weeks worth of history, the interesting parts of which I've documented in `CONTRIBUTING.md`. I'm now throwing this history away because there is a lot of messing with data files in there that bloats the repo unnecessarily, and this is my last chance to get rid of that bloat before other people start pulling it.
16 lines
526 B
Makefile
16 lines
526 B
Makefile
default:
|
|
@printf '%s\n' '>> Usage:' ' make import JMDICT_PATH=/path/to/jmdict' ' make export' '>> Refer to README.md for details.'
|
|
|
|
import:
|
|
ifeq ($(origin JMDICT_PATH),undefined)
|
|
@echo "ERROR: Run as \`make import JMDICT_PATH=/path/to/JMdict\`".
|
|
@false
|
|
endif
|
|
go run preprocess-jmdict.go $(JMDICT_PATH)
|
|
|
|
EXPORT_FILENAME ?= entrypack-v1-$(shell cat entrypack.json | grep -o 'Creation Date: [0-9-]*' | awk '{print$$3}').json.gz
|
|
|
|
export:
|
|
gzip -9 < entrypack.json > $(EXPORT_FILENAME)
|
|
|
|
.PHONY: default import export
|