mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/next/linux-next.git
synced 2025-01-09 07:23:14 +00:00
4a86220e04
We can now rely on struct_ops as we cleared the users in-tree. Link: https://lore.kernel.org/r/20240608-hid_bpf_struct_ops-v3-8-6ac6ade58329@kernel.org Signed-off-by: Benjamin Tissoires <bentiss@kernel.org>
12 lines
292 B
Makefile
12 lines
292 B
Makefile
# SPDX-License-Identifier: GPL-2.0
|
|
#
|
|
# Makefile for HID-BPF
|
|
#
|
|
|
|
LIBBPF_INCLUDE = $(srctree)/tools/lib
|
|
|
|
obj-$(CONFIG_HID_BPF) += hid_bpf.o
|
|
CFLAGS_hid_bpf_dispatch.o += -I$(LIBBPF_INCLUDE)
|
|
CFLAGS_hid_bpf_jmp_table.o += -I$(LIBBPF_INCLUDE)
|
|
hid_bpf-objs += hid_bpf_dispatch.o hid_bpf_struct_ops.o
|