wasmer/Makefile

18 lines
319 B
Makefile
Raw Normal View History

2018-10-23 23:54:07 +02:00
.PHONY: spectests clean build install
# This will re-generate the Rust test files based on spectests/*.wast
spectests:
2018-11-06 18:19:57 +01:00
WASM_GENERATE_SPECTESTS=1 cargo +nightly build
2018-10-23 23:54:07 +02:00
# clean:
# rm -rf target
build:
2018-11-06 18:19:57 +01:00
cargo +nightly build
2018-10-23 23:54:07 +02:00
install:
2018-11-06 18:19:57 +01:00
cargo +nightly install --path .
2018-10-23 23:54:07 +02:00
test:
2018-11-06 18:19:57 +01:00
cargo +nightly test -- --test-threads=1