-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile
64 lines (52 loc) · 1.21 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
56
57
58
59
60
61
62
63
64
.PHONY: help build test fmt clippy fix doc image clean
.DEFAULT_GOAL := help
APP_NAME := husky-rs
# Build the project
build:
@cargo build --release
# Run tests
test:
@cargo test
# Format code
fmt:
@cargo fmt
# Run clippy
clippy:
@cargo clippy -- -D warnings
# Fix
fix:
@cargo clippy --fix --allow-dirty --allow-staged --all-targets --all-features --workspace -- -D warnings
# Generate documentation
doc:
@cargo doc --no-deps
# Build image
image:
@docker image build -t $(APP_NAME) .
# Start a compose service
compose-up:
@docker compose -f ./compose.yml -p $(APP_NAME) up -d
# Shutdown a compose service
compose-down:
@docker compose -f ./compose.yml down
# Clean build artifacts
clean:
@cargo clean
@rm -rf target
@docker compose -f ./compose.yml down -v
@docker image rm -f $(APP_NAME)
# 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)