summaryrefslogtreecommitdiffstats
path: root/src/libknot/xdp/Makefile.am
blob: 88befe983f9d9e12c67a2e545c54234bb08f09f4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# Useful commands:
#   make filter
#   ip link show $eth
#   sudo ip link set dev $eth xdp off
#   sudo ip link set dev $eth xdp obj ./bpf-kernel.o
#
# When updating check using `llvm-objdump -h bpf-kernel.o` if .BTF and .BTF.ext
# sections are present.

EXTRA_DIST = bpf-kernel-obj.c bpf-kernel.c

.PHONY: filter

filter:
	rm -f bpf-kernel.o bpf-kernel-obj.c
	clang -target bpf -Wall -O2 -g -DNDEBUG -c -o bpf-kernel.o -I/usr/include/x86_64-linux-gnu -include ../../config.h bpf-kernel.c
	llvm-strip -S bpf-kernel.o
	xxd -i bpf-kernel.o > bpf-kernel-obj.c