wasmer/Makefile

18 lines
263 B
Makefile
Raw Normal View History

2018-10-23 21:54:07 +00:00
.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