https://github.com/torvalds/linux
Raw File
Tip revision: d72e90f33aa4709ebecc5005562f52335e106a60 authored by Linus Torvalds on 22 July 2018, 21:12:20 UTC
Linux 4.18-rc6
Tip revision: d72e90f
Makefile
#
# Arch-specific network modules
#

ifeq ($(CONFIG_X86_32),y)
        obj-$(CONFIG_BPF_JIT) += bpf_jit_comp32.o
else
        obj-$(CONFIG_BPF_JIT) += bpf_jit_comp.o
endif
back to top