-
Notifications
You must be signed in to change notification settings - Fork 58
Expand file tree
/
Copy pathMakefile
More file actions
66 lines (51 loc) · 2.06 KB
/
Makefile
File metadata and controls
66 lines (51 loc) · 2.06 KB
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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
# Set the default target of this Makefile
.PHONY: all
all:: ci ## Default target, runs the CI process
.PHONY: check-features
check-features: ## Check feature flags for crates
$(MAKE) -C crates/sui-sdk-types check-features
$(MAKE) -C crates/sui-crypto check-features
$(MAKE) -C crates/sui-transaction-builder check-features
.PHONY: check-fmt
check-fmt: ## Check code formatting
cargo fmt -- --config imports_granularity=Item --config format_code_in_doc_comments=true --check
.PHONY: fmt
fmt: ## Format code
cargo fmt -- --config imports_granularity=Item --config format_code_in_doc_comments=true
.PHONY: clippy
clippy: ## Run Clippy linter
cargo clippy --all-features --all-targets
.PHONY: test
test: ## Run unit tests
cargo nextest run --all-features
cargo test --all-features --doc
.PHONY: wasm
wasm: ## Build WASM modules
$(MAKE) -C crates/sui-sdk-types wasm
$(MAKE) -C crates/sui-crypto wasm
.PHONY: doc
doc: ## Generate documentation
RUSTDOCFLAGS="-Dwarnings --cfg=doc_cfg -Zunstable-options --generate-link-to-definition" RUSTC_BOOTSTRAP=1 cargo doc --all-features --no-deps
.PHONY: doc-open
doc-open: ## Generate and open documentation
RUSTDOCFLAGS="--cfg=doc_cfg -Zunstable-options --generate-link-to-definition" RUSTC_BOOTSTRAP=1 cargo doc --all-features --no-deps --open
.PHONY: proto
proto: ## run protobuf codegen
$(MAKE) -C crates/sui-rpc proto
.PHONY: is-dirty
is-dirty: ## Checks if repository is dirty
@(test -z "$$(git diff)" || (git diff && false)) && (test -z "$$(git status --porcelain)" || (git status --porcelain && false))
.PHONY: ci
ci: check-features check-fmt test wasm ## Run the full CI process
.PHONY: ci-full
ci-full: ci doc ## Run the full CI process and generate documentation
.PHONY: clean
clean: ## Clean build artifacts
cargo clean
.PHONY: clean-all
clean-all: clean ## Clean all generated files, including those ignored by Git. Force removal.
git clean -dXf
.PHONY: help
help: ## Show this help
@echo "Available targets:"
@awk 'BEGIN {FS = ":.*?## "} /^[a-zA-Z_-]+:.*?## / {printf "\033[36m%-30s\033[0m %s\n", $$1, $$2}' $(MAKEFILE_LIST)