56 lines
1.6 KiB
Makefile
56 lines
1.6 KiB
Makefile
test: build clippy-all cargo-test wasm fmt
|
|
happy: fmt clippy-happy test
|
|
clippy-all: clippy-all-main clippy-all-contracts clippy-all-wallet
|
|
clippy-happy: clippy-happy-main clippy-happy-contracts clippy-happy-wallet
|
|
cargo-test: test-main test-contracts test-wallet
|
|
build: build-contracts build-wallet build-main
|
|
fmt: fmt-main fmt-contracts fmt-wallet
|
|
|
|
clippy-happy-main:
|
|
cargo clippy
|
|
|
|
clippy-happy-contracts:
|
|
cargo clippy --manifest-path contracts/Cargo.toml --target wasm32-unknown-unknown
|
|
|
|
clippy-happy-wallet:
|
|
cargo clippy --manifest-path nym-wallet/Cargo.toml
|
|
|
|
clippy-all-main:
|
|
cargo clippy --workspace --all-features -- -D warnings
|
|
|
|
clippy-all-contracts:
|
|
cargo clippy --workspace --manifest-path contracts/Cargo.toml --all-features --target wasm32-unknown-unknown -- -D warnings
|
|
|
|
clippy-all-wallet:
|
|
cargo clippy --workspace --manifest-path nym-wallet/Cargo.toml --all-features -- -D warnings
|
|
|
|
test-main:
|
|
cargo test --all-features --workspace
|
|
|
|
test-contracts:
|
|
cargo test --manifest-path contracts/Cargo.toml --all-features
|
|
|
|
test-wallet:
|
|
cargo test --manifest-path nym-wallet/Cargo.toml --all-features
|
|
|
|
build-main:
|
|
cargo build --workspace
|
|
|
|
build-contracts:
|
|
cargo build --manifest-path contracts/Cargo.toml --workspace
|
|
|
|
build-wallet:
|
|
cargo build --manifest-path nym-wallet/Cargo.toml --workspace
|
|
|
|
fmt-main:
|
|
cargo fmt --all
|
|
|
|
fmt-contracts:
|
|
cargo fmt --manifest-path contracts/Cargo.toml --all
|
|
|
|
fmt-wallet:
|
|
cargo fmt --manifest-path nym-wallet/Cargo.toml --all
|
|
|
|
wasm:
|
|
RUSTFLAGS='-C link-arg=-s' cargo build --manifest-path contracts/Cargo.toml --release --target wasm32-unknown-unknown
|