diff options
Diffstat (limited to 'arch/x86/net/Makefile')
-rw-r--r-- | arch/x86/net/Makefile | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/arch/x86/net/Makefile b/arch/x86/net/Makefile new file mode 100644 index 000000000..59e123da5 --- /dev/null +++ b/arch/x86/net/Makefile @@ -0,0 +1,9 @@ +# +# 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 |