mirror of
https://git.kernel.org/pub/scm/network/iproute2/iproute2.git
synced 2026-01-26 14:13:24 +00:00
Allow a port's spanning tree state to be modified on a per-MSTI basis, and support dumping the current MST states for every port and MSTI. Signed-off-by: Tobias Waldekranz <tobias@waldekranz.com> Signed-off-by: David Ahern <dsahern@kernel.org>
16 lines
307 B
Makefile
16 lines
307 B
Makefile
# SPDX-License-Identifier: GPL-2.0
|
|
BROBJ = bridge.o fdb.o monitor.o link.o mdb.o mst.o vlan.o vni.o
|
|
|
|
include ../config.mk
|
|
|
|
all: bridge
|
|
|
|
bridge: $(BROBJ) $(LIBNETLINK)
|
|
$(QUIET_LINK)$(CC) $^ $(LDFLAGS) $(LDLIBS) -o $@
|
|
|
|
install: all
|
|
install -m 0755 bridge $(DESTDIR)$(SBINDIR)
|
|
|
|
clean:
|
|
rm -f $(BROBJ) bridge
|