| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970 |
- .POSIX:
- # Cargo binary
- CARGO = cargo +nightly
- # Compile target for system binaries
- RUST_TARGET = $(shell rustc -Vv | grep '^host: ' | cut -d' ' -f2)
- # Uncomment when doing musl static builds
- #RUSTFLAGS = -C target-feature=+crt-static -C link-self-contained=yes
- # wasm build target
- WASM_TARGET = wasm32-unknown-unknown
- # Cargo package name
- PKGNAME = $(shell grep '^name = ' Cargo.toml | cut -d' ' -f3 | tr -d '"')
- # wasm contract binary
- WASM_BIN = $(PKGNAME:=.wasm)
- # zkas compiler binary
- ZKAS = ../../../zkas
- # zkas circuits
- PROOFS_SRC = $(shell find proof -type f -name '*.zk')
- PROOFS_BIN = $(PROOFS_SRC:=.bin)
- # wasm source files
- WASM_SRC = \
- $(shell find src -type f -name '*.rs') \
- $(shell find ../../sdk -type f -name '*.rs') \
- $(shell find ../../serial -type f -name '*.rs')
- all: $(WASM_BIN)
- $(PROOFS_BIN): $(ZKAS) $(PROOFS_SRC)
- $(ZKAS) $(basename $@) -o $@
- $(WASM_BIN): $(WASM_SRC) $(PROOFS_BIN)
- RUSTFLAGS="$(RUSTFLAGS)" $(CARGO) build --target=$(WASM_TARGET) \
- --release --package $(PKGNAME)
- cp -f ../../../target/$(WASM_TARGET)/release/$@ $@
- test-stake-unstake: all
- RUSTFLAGS="$(RUSTFLAGS)" $(CARGO) test --target=$(RUST_TARGET) \
- --release --package $(PKGNAME) \
- --features=no-entrypoint,client \
- --test stake_unstake
- test-genesis-stake-unstake: all
- RUSTFLAGS="$(RUSTFLAGS)" $(CARGO) test --target=$(RUST_TARGET) \
- --release --package $(PKGNAME) \
- --features=no-entrypoint,client \
- --test genesis_stake_unstake
- test: test-genesis-stake-unstake test-stake-unstake
- clippy: all
- RUSTFLAGS="$(RUSTFLAGS)" $(CARGO) clippy --target=$(WASM_TARGET) \
- --release --package $(PKGNAME)
- RUSTFLAGS="$(RUSTFLAGS)" $(CARGO) clippy --target=$(RUST_TARGET) \
- --release --package $(PKGNAME) \
- --features=no-entrypoint,client --tests
- clean:
- RUSTFLAGS="$(RUSTFLAGS)" $(CARGO) clean --target=$(WASM_TARGET) \
- --release --package $(PKGNAME)
- RUSTFLAGS="$(RUSTFLAGS)" $(CARGO) clean --target=$(RUST_TARGET) \
- --release --package $(PKGNAME)
- rm -f $(PROOFS_BIN) $(WASM_BIN)
- .PHONY: all test-genesis-stake-unstake test-stake-unstake test clippy clean
|