mirror of
https://github.com/fluencelabs/wasmer
synced 2024-12-13 22:25:40 +00:00
18 lines
283 B
Makefile
18 lines
283 B
Makefile
.PHONY: spectests clean build install
|
|
|
|
# This will re-generate the Rust test files based on spectests/*.wast
|
|
spectests:
|
|
WASM_GENERATE_SPECTESTS=1 cargo build
|
|
|
|
# clean:
|
|
# rm -rf target
|
|
|
|
build:
|
|
cargo build
|
|
|
|
install:
|
|
cargo install --path .
|
|
|
|
test:
|
|
cargo test -- --test-threads=1
|