2018-11-21 04:32:23 +00:00
|
|
|
ifeq (test, $(firstword $(MAKECMDGOALS)))
|
|
|
|
runargs := $(wordlist 2, $(words $(MAKECMDGOALS)), $(MAKECMDGOALS))
|
|
|
|
$(eval $(runargs):;@true)
|
|
|
|
endif
|
|
|
|
|
2018-12-10 03:21:28 +00:00
|
|
|
.PHONY: spectests emtests clean build install
|
2018-10-23 21:54:07 +00:00
|
|
|
|
|
|
|
# This will re-generate the Rust test files based on spectests/*.wast
|
|
|
|
spectests:
|
|
|
|
WASM_GENERATE_SPECTESTS=1 cargo build
|
|
|
|
|
2018-12-10 03:21:28 +00:00
|
|
|
emtests:
|
|
|
|
WASM_GENERATE_EMTESTS=1 cargo build
|
|
|
|
|
2018-10-23 21:54:07 +00:00
|
|
|
# clean:
|
2018-11-13 18:28:50 +00:00
|
|
|
# rm -rf artifacts
|
2018-10-23 21:54:07 +00:00
|
|
|
|
|
|
|
build:
|
|
|
|
cargo build
|
|
|
|
|
|
|
|
install:
|
|
|
|
cargo install --path .
|
|
|
|
|
|
|
|
test:
|
2018-12-11 03:19:46 +00:00
|
|
|
# We use one thread so the emscripten stdouts doesn't collide
|
|
|
|
cargo test -- --test-threads=1 $(runargs)
|
2018-11-13 18:28:50 +00:00
|
|
|
|
|
|
|
release:
|
|
|
|
# If you are in OS-X, you will need mingw-w64 for cross compiling to windows
|
|
|
|
# brew install mingw-w64
|
|
|
|
cargo build --release
|
|
|
|
|
2018-11-26 19:47:33 +00:00
|
|
|
debug-release:
|
|
|
|
cargo build --release --features "debug"
|
|
|
|
|
2018-11-13 18:28:50 +00:00
|
|
|
publish-release:
|
|
|
|
ghr -t ${GITHUB_TOKEN} -u ${CIRCLE_PROJECT_USERNAME} -r ${CIRCLE_PROJECT_REPONAME} -c ${CIRCLE_SHA1} -delete ${VERSION} ./artifacts/
|