Makefile 310 B

1234567891011121314151617181920
  1. # SPDX-License-Identifier: GPL-2.0
  2. obj-$(CONFIG_NETDEVSIM) += netdevsim.o
  3. netdevsim-objs := \
  4. netdev.o \
  5. ifeq ($(CONFIG_BPF_SYSCALL),y)
  6. netdevsim-objs += \
  7. bpf.o
  8. endif
  9. ifneq ($(CONFIG_NET_DEVLINK),)
  10. netdevsim-objs += devlink.o fib.o
  11. endif
  12. ifneq ($(CONFIG_XFRM_OFFLOAD),)
  13. netdevsim-objs += ipsec.o
  14. endif