]> git.proxmox.com Git - mirror_iproute2.git/blob - bridge/Makefile
Merge branch 'master' into net-next
[mirror_iproute2.git] / bridge / Makefile
1 BROBJ = bridge.o fdb.o monitor.o link.o mdb.o vlan.o
2
3 include ../Config
4
5 ifeq ($(IP_CONFIG_SETNS),y)
6 CFLAGS += -DHAVE_SETNS
7 endif
8
9 all: bridge
10
11 bridge: $(BROBJ) $(LIBNETLINK)
12 $(QUIET_LINK)$(CC) $^ $(LDFLAGS) $(LDLIBS) -o $@
13
14 install: all
15 install -m 0755 bridge $(DESTDIR)$(SBINDIR)
16
17 clean:
18 rm -f $(BROBJ) bridge