File tree 2 files changed +29
-0
lines changed
2 files changed +29
-0
lines changed Original file line number Diff line number Diff line change @@ -44,6 +44,10 @@ clean-docker-plugin-rootfs:
44
44
init :
45
45
./misc/init.sh
46
46
47
+ .PHONY : init-apt
48
+ init-apt :
49
+ ./misc/init-apt.sh
50
+
47
51
.PHONY : all
48
52
all : clean jar-with-lib jlink image docker docker-network-plugin
49
53
Original file line number Diff line number Diff line change
1
+ #! /bin/bash
2
+
3
+ set -e
4
+
5
+ echo " You might want to run:"
6
+ echo " git config --global core.autocrlf false"
7
+ echo " ---"
8
+
9
+ echo " installing necessary softwares"
10
+ sudo apt install -y git build-essential zip libelf-dev libbpf-dev cmake
11
+ echo " ---"
12
+
13
+ echo " 'make init' to initiate this project"
14
+ make init
15
+
16
+ echo " 'make clean' to ensure the build system works as expected"
17
+ make clean
18
+ echo " ---"
19
+
20
+ echo " 'make fubuki' to download fubuki required libraries"
21
+ make fubuki
22
+ echo " ---"
23
+
24
+ echo " 'make jar-with-lib' to build the project"
25
+ make jar-with-lib
You can’t perform that action at this time.
0 commit comments