summaryrefslogtreecommitdiff
path: root/arch/mips/net/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'arch/mips/net/Makefile')
-rw-r--r--arch/mips/net/Makefile7
1 files changed, 6 insertions, 1 deletions
diff --git a/arch/mips/net/Makefile b/arch/mips/net/Makefile
index d55912349039..e057ee4ba75e 100644
--- a/arch/mips/net/Makefile
+++ b/arch/mips/net/Makefile
@@ -2,4 +2,9 @@
# MIPS networking code
obj-$(CONFIG_MIPS_CBPF_JIT) += bpf_jit.o bpf_jit_asm.o
-obj-$(CONFIG_MIPS_EBPF_JIT) += ebpf_jit.o
+
+ifeq ($(CONFIG_32BIT),y)
+ obj-$(CONFIG_MIPS_EBPF_JIT) += bpf_jit_comp.o bpf_jit_comp32.o
+else
+ obj-$(CONFIG_MIPS_EBPF_JIT) += ebpf_jit.o
+endif