13 lines · plain
1# SPDX-License-Identifier: GPL-2.02#3# Makefile for the network team driver4#5 6team-y:= team_core.o team_nl.o7obj-$(CONFIG_NET_TEAM) += team.o8obj-$(CONFIG_NET_TEAM_MODE_BROADCAST) += team_mode_broadcast.o9obj-$(CONFIG_NET_TEAM_MODE_ROUNDROBIN) += team_mode_roundrobin.o10obj-$(CONFIG_NET_TEAM_MODE_RANDOM) += team_mode_random.o11obj-$(CONFIG_NET_TEAM_MODE_ACTIVEBACKUP) += team_mode_activebackup.o12obj-$(CONFIG_NET_TEAM_MODE_LOADBALANCE) += team_mode_loadbalance.o13