1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
default: build all: test test: build cargo test build: $(MAKE) -C ../token || break; cargo build --target wasm32-unknown-unknown --release @ls -l target/wasm32-unknown-unknown/release/*.wasm fmt: cargo fmt --all --check clean: cargo clean