-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile
46 lines (35 loc) · 887 Bytes
/
Makefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
# Set the default target of this Makefile
.PHONY: all
all:: ci
.PHONY: check-features
check-features:
$(MAKE) -C crates/iota-rust-sdk check-features
.PHONY: check-fmt
check-fmt:
cargo fmt -- --check
.PHONY: clippy
clippy:
cargo clippy --all-features --all-targets
.PHONY: test
test:
cargo nextest run --all-features
cargo test --doc
.PHONY: wasm
wasm:
$(MAKE) -C crates/iota-rust-sdk wasm
.PHONY: doc
doc:
RUSTDOCFLAGS="--cfg=doc_cfg -Zunstable-options --generate-link-to-definition" RUSTC_BOOTSTRAP=1 cargo doc --all-features --no-deps
.PHONY: doc-open
doc-open:
RUSTDOCFLAGS="--cfg=doc_cfg -Zunstable-options --generate-link-to-definition" RUSTC_BOOTSTRAP=1 cargo doc --all-features --no-deps --open
.PHONY: ci
ci: check-features check-fmt test wasm
.PHONY: ci-full
ci-full: ci doc
.PHONY: clean
clean:
cargo clean
.PHONY: clean-all
clean-all: clean
git clean -dX