mirror of
https://github.com/arjuncr/Linux-from-scratch.git
synced 2026-01-18 12:41:23 +00:00
12 lines
173 B
Makefile
12 lines
173 B
Makefile
# SPDX-License-Identifier: GPL-2.0
|
|
|
|
obj-$(CONFIG_NETDEVSIM) += netdevsim.o
|
|
|
|
netdevsim-objs := \
|
|
netdev.o \
|
|
|
|
ifeq ($(CONFIG_BPF_SYSCALL),y)
|
|
netdevsim-objs += \
|
|
bpf.o
|
|
endif
|