forked from kmesh-net/kmesh
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMakefile
160 lines (123 loc) · 4.35 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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
# Copyright 2023 The Kmesh Authors.
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
# Author: LemmyHuang
# Create: 2021-12-08
ROOT_DIR := $(dir $(abspath $(lastword $(MAKEFILE_LIST))))
# Get the currently used golang install path (in GOPATH/bin, unless GOBIN is set)
ifeq (,$(shell go env GOBIN))
GOBIN=$(shell go env GOPATH)/bin
else
GOBIN=$(shell go env GOBIN)
endif
export PATH := $(GOBIN):$(PATH)
include ./mk/bpf.vars.mk
include ./mk/bpf.print.mk
# compiler flags
GOFLAGS := $(EXTRA_GOFLAGS)
ARCH := $(shell uname -m)
ifeq ($(ARCH),x86_64)
DIR := amd64
else
DIR := aarch64
endif
# target
APPS1 := kmesh-daemon
APPS2 := mdacore
APPS3 := kmesh-cni
# If the hub is not explicitly set, use default to kmesh-net.
HUB ?= ghcr.io/kmesh-net
ifeq ($(HUB),)
$(error "HUB cannot be empty")
endif
TARGET ?= kmesh
ifeq ($(TARGET),)
$(error "TARGET cannot be empty")
endif
# If tag not explicitly set, default to the git sha.
TAG ?= $(shell git rev-parse --verify HEAD)
ifeq ($(TAG),)
$(error "TAG cannot be empty")
endif
TMP_FILES := bpf/kmesh/bpf2go/bpf2go.go \
config/kmesh_marcos_def.h \
mk/api-v2-c.pc \
mk/bpf.pc
.PHONY: all install uninstall clean build docker
all:
$(QUIET) find $(ROOT_DIR)/mk -name "*.pc" | xargs sed -i "s#^prefix=.*#prefix=${ROOT_DIR}#g"
$(QUIET) make -C api/v2-c
$(QUIET) make -C bpf/deserialization_to_bpf_map
$(QUIET) $(GO) generate bpf/kmesh/bpf2go/bpf2go.go
$(call printlog, BUILD, $(APPS1))
$(QUIET) (export PKG_CONFIG_PATH=$(PKG_CONFIG_PATH):$(ROOT_DIR)mk; \
$(GO) build -tags $(ENHANCED_KERNEL) -o $(APPS1) $(GOFLAGS) ./daemon/main.go)
$(call printlog, BUILD, "kernel")
$(QUIET) make -C kernel/ko_src
$(call printlog, BUILD, $(APPS2))
$(QUIET) cd oncn-mda && cmake . -B build && make -C build
$(call printlog, BUILD, $(APPS3))
$(QUIET) (export PKG_CONFIG_PATH=$(PKG_CONFIG_PATH):$(ROOT_DIR)mk; \
$(GO) build -tags $(ENHANCED_KERNEL) -o $(APPS3) $(GOFLAGS) ./cniplugin/main.go)
.PHONY: gen-proto
gen-proto:
$(QUIET) make -C api gen-proto
.PHONY: tidy
tidy:
go mod tidy
.PHONY: gen
gen: tidy\
gen-proto
.PHONY: gen-check
gen-check: gen
hack/gen-check.sh
install:
$(QUIET) make install -C api/v2-c
$(QUIET) make install -C bpf/deserialization_to_bpf_map
$(QUIET) make install -C kernel/ko_src
$(call printlog, INSTALL, $(INSTALL_BIN)/$(APPS1))
$(QUIET) install -Dp -m 0500 $(APPS1) $(INSTALL_BIN)
$(call printlog, INSTALL, $(INSTALL_BIN)/$(APPS2))
$(QUIET) install -Dp -m 0500 oncn-mda/deploy/$(APPS2) $(INSTALL_BIN)
$(QUIET) install -Dp -m 0400 oncn-mda/build/ebpf_src/CMakeFiles/sock_ops.dir/sock_ops.c.o /usr/share/oncn-mda/sock_ops.c.o
$(QUIET) install -Dp -m 0400 oncn-mda/build/ebpf_src/CMakeFiles/sock_redirect.dir/sock_redirect.c.o /usr/share/oncn-mda/sock_redirect.c.o
$(call printlog, INSTALL, $(INSTALL_BIN)/$(APPS3))
$(QUIET) install -Dp -m 0500 $(APPS3) $(INSTALL_BIN)
uninstall:
$(QUIET) make uninstall -C api/v2-c
$(QUIET) make uninstall -C bpf/deserialization_to_bpf_map
$(QUIET) make uninstall -C kernel/ko_src
$(call printlog, UNINSTALL, $(INSTALL_BIN)/$(APPS1))
$(QUIET) rm -rf $(INSTALL_BIN)/$(APPS1)
$(call printlog, UNINSTALL, $(INSTALL_BIN)/$(APPS2))
$(QUIET) rm -rf $(INSTALL_BIN)/$(APPS2)
$(call printlog, UNINSTALL, $(INSTALL_BIN)/$(APPS3))
$(QUIET) rm -rf $(INSTALL_BIN)/$(APPS3)
build:
./kmesh_compile.sh
docker: build
docker build --build-arg arch=$(DIR) -f build/docker/kmesh.dockerfile -t $(HUB)/$(TARGET):$(TAG) .
clean:
$(QUIET) rm -rf ./out
$(QUIET) rm -rf ./config/linux-bpf.h
git checkout $(TMP_FILES)
$(call printlog, CLEAN, $(APPS1))
$(QUIET) rm -rf $(APPS1) $(APPS1)
$(call printlog, CLEAN, $(APPS2))
$(QUIET) rm -rf oncn-mda/build
$(QUIET) rm -rf oncn-mda/deploy
$(call printlog, CLEAN, $(APPS3))
$(QUIET) rm -rf $(APPS1) $(APPS3)
$(QUIET) make clean -C api/v2-c
$(QUIET) make clean -C bpf/deserialization_to_bpf_map
$(call printlog, CLEAN, "kernel")
$(QUIET) make clean -C kernel/ko_src