From a30df5c09fb3941fc42c4570ed2545e7057bf82a Mon Sep 17 00:00:00 2001 From: Andrii Nakryiko Date: Wed, 9 Oct 2019 14:29:10 -0700 Subject: [PATCH] makefile: install new BPF-side headers along libbpf user-land ones Install BPF-side helper headers: - bpf_helpers.h - bpf_helper_defs.h - bpf_tracing.h - bpf_endian.h - bpf_core_read.h Signed-off-by: Andrii Nakryiko --- src/Makefile | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/Makefile b/src/Makefile index 6992fbf..0b999fc 100644 --- a/src/Makefile +++ b/src/Makefile @@ -45,7 +45,9 @@ ifndef BUILD_STATIC_ONLY VERSION_SCRIPT := libbpf.map endif -HEADERS := bpf.h libbpf.h btf.h xsk.h libbpf_util.h +HEADERS := bpf.h libbpf.h btf.h xsk.h libbpf_util.h \ + bpf_helpers.h bpf_helper_defs.h bpf_tracing.h \ + bpf_endian.h bpf_core_read.h UAPI_HEADERS := $(addprefix $(TOPDIR)/include/uapi/linux/,\ bpf.h bpf_common.h btf.h)