From 5810af744692a8a7a83fd6bc3a08fd9da557a18b Mon Sep 17 00:00:00 2001 From: Hengqi Chen Date: Thu, 7 Apr 2022 11:11:21 +0800 Subject: [PATCH] Makefile: Add usdt.bpf.h to list of HEADERS Add usdt.bpf.h to HEADERS so that it can be installed and included by users. Signed-off-by: Hengqi Chen --- src/Makefile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/Makefile b/src/Makefile index b5f250f..81ea6b8 100644 --- a/src/Makefile +++ b/src/Makefile @@ -56,7 +56,8 @@ endif HEADERS := bpf.h libbpf.h btf.h libbpf_common.h libbpf_legacy.h xsk.h \ bpf_helpers.h bpf_helper_defs.h bpf_tracing.h \ - bpf_endian.h bpf_core_read.h skel_internal.h libbpf_version.h + bpf_endian.h bpf_core_read.h skel_internal.h libbpf_version.h \ + usdt.bpf.h UAPI_HEADERS := $(addprefix $(TOPDIR)/include/uapi/linux/,\ bpf.h bpf_common.h btf.h)