Makefile 359 B

12345678910111213141516171819
  1. # SPDX-License-Identifier: GPL-2.0
  2. obj-$(CONFIG_NETDEVSIM) += netdevsim.o
  3. netdevsim-objs := \
  4. netdev.o dev.o ethtool.o fib.o bus.o health.o hwstats.o udp_tunnels.o
  5. ifeq ($(CONFIG_BPF_SYSCALL),y)
  6. netdevsim-objs += \
  7. bpf.o
  8. endif
  9. ifneq ($(CONFIG_XFRM_OFFLOAD),)
  10. netdevsim-objs += ipsec.o
  11. endif
  12. ifneq ($(CONFIG_PSAMPLE),)
  13. netdevsim-objs += psample.o
  14. endif