-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathmakefile
More file actions
73 lines (53 loc) · 1.59 KB
/
makefile
File metadata and controls
73 lines (53 loc) · 1.59 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
67
68
69
70
71
72
73
# Make will use bash instead of sh
SHELL := /usr/bin/env bash
.PHONY: help
help:
@echo ' '
@echo ' make build Builds the code base incrementally (fast) for dev.'
@echo ' make bench Runs all benchmarks across all crates.'
@echo ' make check Checks the code base for security vulnerabilities.'
@echo ' make fix Fixes linting issues as reported by clippy.'
@echo ' make format Formats call code according to cargo fmt style.'
@echo ' make install Tests and installs all make script dependencies.'
@echo ' make start Starts the dev day with updating rust, pulling from git remote, and build the project.'
@echo ' make test Runs all tests across all crates.'
@echo ' make update Update all dependencies for all crates'
@echo ' make sbom Generate SBOM for all crates'
# "---------------------------------------------------------"
# "---------------------------------------------------------"
.PHONY: build
build:
@source build/scripts/build.sh
.PHONY: bench
bench:
@source build/scripts/bench.sh
.PHONY: check
check:
@source build/scripts/check.sh
.PHONY: fix
fix:
@source build/scripts/fix.sh
.PHONY: format
format:
@source build/scripts/format.sh
.PHONY: install
install:
@source build/scripts/install_deps.sh
.PHONY: release
release:
@source build/scripts/release.sh
.PHONY: start
start:
@source build/scripts/start.sh
.PHONY: test
test:
@source build/scripts/test.sh
.PHONY: sbom
sbom:
@source build/scripts/sbom.sh
.PHONY: update
update:
@source build/scripts/update.sh
.PHONY: vendor
vendor:
@source build/scripts/vendor.sh