FEATURES ?= "lua51"
.PHONY: build
build:
cargo build --features ${FEATURES}
.PHONY: check
check:
cargo clippy --features ${FEATURES} -- --no-deps
cargo test --features ${FEATURES} -- --show-output --test-threads=1
.PHONY: fmt
fmt:
cargo fmt --all
.PHONY: clean
clean:
cargo clean