13 lines · plain
1# SPDX-License-Identifier: GPL-2.0-only2#3# Makefile for the Ethernet Bonding driver4#5 6obj-$(CONFIG_BONDING) += bonding.o7 8bonding-objs := bond_main.o bond_3ad.o bond_alb.o bond_sysfs.o bond_sysfs_slave.o bond_debugfs.o bond_netlink.o bond_options.o9 10proc-$(CONFIG_PROC_FS) += bond_procfs.o11bonding-objs += $(proc-y)12 13