forked from pixie-io/pixie
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile
88 lines (68 loc) · 2.48 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
# Makefile for the repo.
# This is used to help coordinate some of the tasks around the build process.
# Most of the actual build steps should be managed by Bazel.
## Bazel command to use.
BAZEL := bazel
## Minikube command to use.
MINIKUBE := minikube
WORKSPACE := $$(bazel info workspace)
## Skaffold command to use.
SKAFFOLD := skaffold
SKAFFOLD_DIR := $(WORKSPACE)/skaffold
.PHONY: clean
clean:
$(BAZEL) clean
.PHONY: pristine
pristine:
$(BAZEL) clean --expunge
.PHONY: build
build: ## Run the full build (except UI).
$(BAZEL) build //...
.PHONY: test
test: ## Run all the tests (except UI).
$(BAZEL) test //... ${BAZEL_TEST_EXTRA_ARGS}
.PHONY: test-opt
test-opt: ## Run all the tests (except UI), optimized build.
$(BAZEL) test -c opt //... ${BAZEL_TEST_EXTRA_ARGS}
.PHONY: test-asan
test-asan: ## Run all the tests (except UI), with address sanitizer.
$(BAZEL) test --config=asan //... ${BAZEL_TEST_EXTRA_ARGS}
.PHONY: test-tsan
test-tsan: ## Run all the tests (except UI), with thread sanitizer.
$(BAZEL) test --config=tsan //... ${BAZEL_TEST_EXTRA_ARGS}
.PHONY: go-mod-ensure
go-mod-ensure: ## Ensure that go dependencies exist.
go mod download
.PHONY: gazelle-repos
gazelle-repos: go.mod
$(BAZEL) run //:gazelle -- update-repos -from_file=go.mod
.PHONY: gazelle
gazelle: gazelle-repos
$(BAZEL) run //:gazelle
.PHONY: go-setup
go-setup: go-mod-ensure gazelle ## Run go setup to regenrate modules/build files.
dev-env-start: ## Start K8s dev environment.
$(WORKSPACE)/scripts/setup_dev_k8s.sh
dev-env-stop: ## Stop dev environment.
$(MINIKUBE) stop
dev-env-teardown: dev-env-stop ## Clean up dev environment.
$(MINIKUBE) delete
help: ## Print help for targets with comments.
@echo "Usage:"
@echo " make [target...] [VAR=foo VAR2=bar...]"
@echo ""
@echo "Useful commands:"
# Grab the comment prefixed with "##" after every rule.
@grep -Eh '^[a-zA-Z._-]+:.*?## .*$$' $(MAKEFILE_LIST) |\
sort | awk 'BEGIN {FS = ":.*?## "}; {printf " $(cyan)%-30s$(term-reset) %s\n", $$1, $$2}'
@echo ""
@echo "Useful variables:"
# Grab the comment prefixed with "##" before every variable.
@awk 'BEGIN { FS = ":=" } /^## /{x = substr($$0, 4); \
getline; if (NF >= 2) printf " $(cyan)%-30s$(term-reset) %s\n", $$1, x}' $(MAKEFILE_LIST) | sort
@echo ""
@echo "Typical usage:"
@printf " $(cyan)%s$(term-reset)\n %s\n\n" \
"make build" "Run a clean build." \
"make go-setup" "Update go deps by re-generating go modules and build files." \
"make pristine" "Delete all cached builds." \