Skip to content

Commit

Permalink
Create Makefile
Browse files Browse the repository at this point in the history
  • Loading branch information
DamieFC authored Mar 30, 2021
1 parent ab6240b commit 1b1fe5f
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions cpu/riscv/net/Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
# SPDX-License-Identifier: GPL-2.0-only

obj-$(CONFIG_BPF_JIT) += bpf_jit_core.o

ifeq ($(CONFIG_ARCH_RV64I),y)
obj-$(CONFIG_BPF_JIT) += bpf_jit_comp64.o
else
obj-$(CONFIG_BPF_JIT) += bpf_jit_comp32.o
endif

0 comments on commit 1b1fe5f

Please sign in to comment.