diff options
author | Gabriel A. Giovanini <mail@gabrielgio.me> | 2024-04-20 16:13:31 +0200 |
---|---|---|
committer | Gabriel A. Giovanini <mail@gabrielgio.me> | 2024-04-20 16:13:31 +0200 |
commit | 737113ca1f4bc8ca30b61d9f7ab674e814375c35 (patch) | |
tree | e8b24310a68488c7a8efcfdf83b14179b05e311b /Makefile | |
parent | ea26916be0ea693b6aefc46f3eeb62e44b8d7cb0 (diff) | |
download | dict-737113ca1f4bc8ca30b61d9f7ab674e814375c35.tar.gz dict-737113ca1f4bc8ca30b61d9f7ab674e814375c35.tar.bz2 dict-737113ca1f4bc8ca30b61d9f7ab674e814375c35.zip |
ref: Remove debugging logs
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -2,7 +2,6 @@ BIN?=bin/dict GO_BUILD=go build -v --tags "fts5" GO_RUN=go run -v --tags "fts5" - buid: ext $(GO_BUILD) -o $(BIN) ./cmd/dict/main.go @@ -12,6 +11,9 @@ run: ext import: ext $(GO_RUN) ./cmd/dict/main.go import +serve: ext + $(GO_RUN) ./cmd/dict/main.go serve + ext: gcc -shared -o ext/libsqlite3ext.so -fPIC ext/spellfix.c |