From: Eric Leblond Date: Thu, 26 Sep 2019 09:16:07 +0000 (+0200) Subject: ebpf: make sure 'make dist' include eBPF files X-Git-Tag: suricata-5.0.0~128 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=9ccecdecb68e470bc64b256f2e18d009cd501b6e;p=thirdparty%2Fsuricata.git ebpf: make sure 'make dist' include eBPF files --- 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)