forked from kmesh-net/kmesh
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile
99 lines (75 loc) · 3.21 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
# 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))))
include ./mk/bpf.vars.mk
include ./mk/bpf.print.mk
# compiler flags
GOFLAGS := $(EXTRA_GOFLAGS)
# target
APPS1 := kmesh-daemon
APPS2 := kmesh-cmd
APPS3 := mdacore
.PHONY: all install uninstall clean
all:
$(QUIET) cp depends/include/6.1/bpf_helper_defs_ext.h bpf/include/
$(QUIET) find $(ROOT_DIR)/mk -name "*.pc" | xargs sed -i "s#^prefix=.*#prefix=${ROOT_DIR}#g"
$(QUIET) make -C api
$(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 -o $(APPS1) $(GOFLAGS) ./daemon/main.go)
$(call printlog, BUILD, $(APPS2))
$(QUIET) (export PKG_CONFIG_PATH=$(PKG_CONFIG_PATH):$(ROOT_DIR)mk; \
$(GO) build -o $(APPS2) $(GOFLAGS) ./cmd/main.go)
$(call printlog, BUILD, "kernel")
$(QUIET) make -C kernel/ko_src
$(call printlog, BUILD, $(APPS3))
$(QUIET) cd oncn-mda && cmake . -B build && make -C build
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 $(APPS2) $(INSTALL_BIN)
$(call printlog, INSTALL, $(INSTALL_BIN)/$(APPS3))
$(QUIET) install -Dp -m 0500 oncn-mda/deploy/$(APPS3) $(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
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)
clean:
$(call printlog, CLEAN, $(APPS1))
$(QUIET) rm -rf $(APPS1) $(APPS1)
$(call printlog, CLEAN, $(APPS2))
$(QUIET) rm -rf $(APPS2) $(APPS2)
$(call printlog, CLEAN, $(APPS3))
$(QUIET) rm -rf oncn-mda/build
$(QUIET) rm -rf oncn-mda/deploy
$(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