1# SPDX-License-Identifier: Apache-2.0
2
3zephyr_library()
4
5zephyr_library_sources_ifdef(CONFIG_NET_LOOPBACK loopback.c)
6zephyr_library_sources_ifdef(CONFIG_NET_CANBUS canbus.c)
7
8if(CONFIG_NET_NATIVE)
9zephyr_library_sources_ifdef(CONFIG_SLIP slip.c)
10zephyr_library_sources_ifdef(CONFIG_NET_PPP ppp.c)
11endif()
12