3
0
mirror of https://github.com/Qortal/Brooklyn.git synced 2025-02-14 11:15:54 +00:00

20 lines
359 B
Makefile
Raw Normal View History

2022-04-02 18:17:33 +05:00
# SPDX-License-Identifier: GPL-2.0
obj-$(CONFIG_NETDEVSIM) += netdevsim.o
netdevsim-objs := \
netdev.o dev.o ethtool.o fib.o bus.o health.o hwstats.o udp_tunnels.o
2022-04-02 18:17:33 +05:00
ifeq ($(CONFIG_BPF_SYSCALL),y)
netdevsim-objs += \
bpf.o
endif
ifneq ($(CONFIG_XFRM_OFFLOAD),)
netdevsim-objs += ipsec.o
endif
ifneq ($(CONFIG_PSAMPLE),)
netdevsim-objs += psample.o
endif