# Makefile for building the contract .PHONY: build build: cargo build --target wasm32-unknown-unknown --release .PHONY: test test: cargo test .PHONY: fmt fmt: cargo fmt .PHONY: lint lint: cargo clippy -- -D warnings .PHONY: all all: fmt lint test build