mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/next/linux-next.git
synced 2025-01-08 15:04:45 +00:00
22de5d6262
Signed-off-by: Helge Deller <deller@gmx.de>
10 lines
204 B
Makefile
10 lines
204 B
Makefile
# SPDX-License-Identifier: GPL-2.0-only
|
|
|
|
obj-$(CONFIG_BPF_JIT) += bpf_jit_core.o
|
|
|
|
ifeq ($(CONFIG_64BIT),y)
|
|
obj-$(CONFIG_BPF_JIT) += bpf_jit_comp64.o
|
|
else
|
|
obj-$(CONFIG_BPF_JIT) += bpf_jit_comp32.o
|
|
endif
|