UNPKG
attest.so
Version:
latest (1.1.2)
1.1.2
<div align="center">
attest.so
/
contracts
/
stellar
/
protocol
/
Makefile
20 lines
(15 loc)
•
262 B
Plain Text
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
# 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