We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e5b178c commit 06364deCopy full SHA for 06364de
2 files changed
.github/workflows/makefile.yml
@@ -0,0 +1,25 @@
1
+name: Makefile CI
2
+
3
+on:
4
+ push:
5
+ branches: [ "main" ]
6
+ pull_request:
7
8
9
+jobs:
10
+ build:
11
12
+ runs-on: ubuntu-latest
13
14
+ steps:
15
+ - uses: actions/checkout@v3
16
17
+ - name: Install depends
18
+ run: sudo apt-get install -y gcc-multilib pkg-config m4 libelf-dev libpcap-dev clang llvm
19
20
+ - name: Pull submodule
21
+ run: git submodule init; git submodule update
22
23
+ - name: Run make
24
+ run: make
25
Makefile
@@ -1,4 +1,4 @@
-.PHONY: clean all
+.PHONY: clean all libbpf
all: libbpf
$(MAKE) -C ./src
0 commit comments