8 lines
211 B
Makefile
8 lines
211 B
Makefile
|
#
|
||
|
# Makefile for the network team driver
|
||
|
#
|
||
|
|
||
|
obj-$(CONFIG_NET_TEAM) += team.o
|
||
|
obj-$(CONFIG_NET_TEAM_MODE_ROUNDROBIN) += team_mode_roundrobin.o
|
||
|
obj-$(CONFIG_NET_TEAM_MODE_ACTIVEBACKUP) += team_mode_activebackup.o
|