From 9ccecdecb68e470bc64b256f2e18d009cd501b6e Mon Sep 17 00:00:00 2001 From: Eric Leblond Date: Thu, 26 Sep 2019 11:16:07 +0200 Subject: [PATCH] ebpf: make sure 'make dist' include eBPF files --- ebpf/Makefile.am | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/ebpf/Makefile.am b/ebpf/Makefile.am index 82bab6f08c..ad32efd34a 100644 --- a/ebpf/Makefile.am +++ b/ebpf/Makefile.am @@ -1,3 +1,6 @@ +EXTRA_DIST= include bypass_filter.c filter.c lb.c vlan_filter.c xdp_filter.c \ + xdp_lb.c bpf_helpers.h hash_func01.h + if BUILD_EBPF # Maintaining a local copy of UAPI linux/bpf.h @@ -12,7 +15,6 @@ BPF_TARGETS += vlan_filter.bpf all: $(BPF_TARGETS) -EXTRA_DIST= include bypass_filter.c filter.c lb.c vlan_filter.c xdp_filter.c xdp_lb.c $(BPF_TARGETS): %.bpf: %.c # From C-code to LLVM-IR format suffix .ll (clang -S -emit-llvm) -- 2.47.3