From 70eac9941dfdf69f763e6beb4020602bec0f4771 Mon Sep 17 00:00:00 2001 From: Andrii Nakryiko Date: Mon, 1 Jun 2020 13:02:04 -0700 Subject: [PATCH] Makefile: add ringbuf.o to the list of object files Add newly added ringbuf.o to the list of OBJS. Signed-off-by: Andrii Nakryiko --- src/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Makefile b/src/Makefile index bc25aba..d0308c3 100644 --- a/src/Makefile +++ b/src/Makefile @@ -33,7 +33,7 @@ SHARED_OBJDIR := $(OBJDIR)/sharedobjs STATIC_OBJDIR := $(OBJDIR)/staticobjs OBJS := bpf.o btf.o libbpf.o libbpf_errno.o netlink.o \ nlattr.o str_error.o libbpf_probes.o bpf_prog_linfo.o xsk.o \ - btf_dump.o hashmap.o + btf_dump.o hashmap.o ringbuf.o SHARED_OBJS := $(addprefix $(SHARED_OBJDIR)/,$(OBJS)) STATIC_OBJS := $(addprefix $(STATIC_OBJDIR)/,$(OBJS))