1BIN?=bin/dict 2 3buid: ext 4 go build -v --tags "fts5" -o $(BIN) . 5 6run: ext 7 go run -v --tags "fts5" . 8 9import: ext 10 go run -v --tags "fts5" . import 11 12ext: 13 gcc -shared -o ext/libsqlite3ext.so -fPIC ext/spellfix.c 14 15.PHONY: ext