attest.so
Version:
<div align="center">
26 lines (19 loc) • 513 B
Plain Text
# Makefile for building the authority resolver contract
TARGET=wasm32-unknown-unknown
# WASM=target/$(TARGET)/release/authority.wasm # Path might vary depending on build context
build:
cargo build --target $(TARGET) --release
# ls $(WASM) # Removed ls check as target path seems inconsistent
test:
# No tests currently
@echo "No tests defined for authority contract."
fmt:
cargo fmt
lint:
cargo clippy -- -D warnings
all: fmt lint build