-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmakefile
49 lines (39 loc) · 1.07 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
# MIT License
#
# Make will use bash instead of sh
SHELL := /usr/bin/env bash
.PHONY: help
help:
@echo ' help:'
@echo ' make build Builds the code base incrementally (fast) for dev.'
@echo ' make current Builds the current target incrementally (fast) defined in current.txt.'
@echo ' make doc Builds documentation for the project.'
@echo ' make format Formats call code according to cargo fmt style.'
@echo ' make lint Lints and formats the code of the project.'
@echo ' make fix Fixes linting issues as reported by clippy.'
@echo ' make test Tests across all crates.'
@echo ' make vendor Vendors all Bazel managed Rust dependencies to folder thirdparty.'
.PHONY: build
build:
@source scripts/build.sh
.PHONY: current
current:
@source scripts/current.sh
.PHONY: doc
doc:
@source scripts/doc.sh
.PHONY: format
format:
@source scripts/format.sh
.PHONY: lint
lint:
@source scripts/lint.sh
.PHONY: fix
fix:
@source scripts/fix.sh
.PHONY: test
test:
@source scripts/test.sh
.PHONY: vendor
vendor:
@source scripts/vendor.sh