cleanup example

This commit is contained in:
Alex Garcia 2024-07-12 16:59:55 -07:00
parent d300718726
commit b57a05e2e8
2 changed files with 17 additions and 7 deletions

View file

@ -1,6 +1,13 @@
demo: demo.go
VERSION=0.0.1-alpha.27
demo: demo.go sqlite3.vec.wasm
go build -o $@ $<
sqlite3.vec.wasm:
exit 1
curl -L -o $@ https://github.com/asg017/sqlite-vec/releases/download/v$(VERSION)/sqlite-vec-$(VERSION)-ncruces-go.wasm
clean:
rm demo sqlite3.vec.wasm
.PHONY: clean