-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMakefile
41 lines (29 loc) · 880 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
CARGO = cargo
CARGO_CCARGS =
################################################################################
# Main goals
ci: CARGO_CCARGS = --all-features --all
ci: test build lint
sync: README.md
test:
$(CARGO) test $(CARGO_CCARGS)
lint: lint/clippy lint/fmt
fmt:
$(CARGO) fmt
build: build/crate
################################################################################
build/crate:
$(CARGO) build $(CARGO_CCARGS)
lint/clippy:
$(CARGO) clippy $(CARGO_CCARGS)
lint/fmt:
$(CARGO) fmt --check
################################################################################
# Make targets
README.md: src/main.rs
@echo Updating $@
$(CARGO) sync-readme
################################################################################
.PHONY: sync test \
$(filter build%, $(MAKECMDGOALS)) \
$(filter lint%, $(MAKECMDGOALS))