mirror of
https://github.com/aljazceru/turso.git
synced 2025-12-25 12:04:21 +01:00
15 lines
235 B
Makefile
15 lines
235 B
Makefile
all: limbo limbo-wasm
|
|
.PHONY: all
|
|
|
|
limbo:
|
|
cargo build
|
|
.PHONY: limbo
|
|
|
|
limbo-wasm:
|
|
cargo build --package limbo-wasm --target wasm32-wasi
|
|
.PHONY: limbo-wasm
|
|
|
|
test: limbo
|
|
SQLITE_EXEC=./target/debug/limbo ./testing/all.test
|
|
.PHONY: test
|