QEMU main repository: Please see https://www.qemu.org/docs/master/devel/submitting-a-patch.html for how to submit changes to QEMU. Pull Requests are ignored. Please only use release tarballs from the QEMU website. http://www.qemu.org
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
511 B
23 lines
511 B
OBJS = rss.bpf.o
|
|
|
|
LLVM_STRIP ?= llvm-strip
|
|
CLANG ?= clang
|
|
INC_FLAGS = `$(CLANG) -print-file-name=include`
|
|
EXTRA_CFLAGS ?= -O2 -g -target bpf
|
|
|
|
all: $(OBJS)
|
|
|
|
.PHONY: clean
|
|
|
|
clean:
|
|
rm -f $(OBJS)
|
|
rm -f rss.bpf.skeleton.h
|
|
|
|
$(OBJS): %.o:%.c
|
|
$(CLANG) $(INC_FLAGS) \
|
|
-D__KERNEL__ -D__ASM_SYSREG_H \
|
|
-I../include $(LINUXINCLUDE) \
|
|
$(EXTRA_CFLAGS) -c $< -o $@
|
|
$(LLVM_STRIP) -g $@
|
|
bpftool gen skeleton rss.bpf.o > rss.bpf.skeleton.h
|
|
cp rss.bpf.skeleton.h ../../ebpf/
|
|
|