-
Notifications
You must be signed in to change notification settings - Fork 4
/
Makefile
55 lines (49 loc) · 1.13 KB
/
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
47
48
49
50
51
52
53
54
55
.PHONY: init
# init env
init:
@echo "init"
.PHONY:fmt
# cargo fmt
fmt:
@cargo fmt -v
.PHONY:cli
# cargo cli
cli:
@cargo build
@cargo run --bin cli
.PHONY:unitTest
# unit Test
test:
@export RUST_LOG=info
@cargo test -v && cargo test --workspace
.PHONY: build
# cargo build
build:
@ if [ "$(OS)" == "Windows_NT" ]; then \
cargo clean && cargo check && cargo build --release --target=x86_64-pc-windows-gnu; \
elif [ "$(shell uname)" == "Darwin" ]; then \
cargo clean && cargo check && cargo build --release --target=x86_64-apple-darwin; \
else \
cargo clean && cargo check && cargo build --release --target=x86_64-unknown-linux-musl; \
fi
.PHONY: all
# generate all
all:
@echo "make all done"
# show help
help:
@echo ''
@echo 'Usage:'
@echo ' make [target]'
@echo ''
@echo 'Targets:'
@awk '/^[a-zA-Z\-\_0-9]+:/ { \
helpMessage = match(lastLine, /^# (.*)/); \
if (helpMessage) { \
helpCommand = substr($$1, 0, index($$1, ":")-1); \
helpMessage = substr(lastLine, RSTART + 2, RLENGTH); \
printf "\033[36m%-22s\033[0m %s\n", helpCommand,helpMessage; \
} \
} \
{ lastLine = $$0 }' $(MAKEFILE_LIST)
.DEFAULT_GOAL := help