mirror of
https://git.proxmox.com/git/mirror_iproute2
synced 2025-11-03 14:14:16 +00:00
For all files in iproute2 which do not have an obvious license identification, mark them with SPDK GPL-2 Signed-off-by: Stephen Hemminger <stephen@networkplumber.org>
16 lines
295 B
Makefile
16 lines
295 B
Makefile
# SPDX-License-Identifier: GPL-2.0
|
|
BROBJ = bridge.o fdb.o monitor.o link.o mdb.o vlan.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
|