]> git.proxmox.com Git - mirror_iproute2.git/blame_incremental - tipc/Makefile
bridge: fdb: add support for src_vni option
[mirror_iproute2.git] / tipc / Makefile
... / ...
CommitLineData
1# SPDX-License-Identifier: GPL-2.0
2include ../config.mk
3
4TARGETS :=
5
6ifeq ($(HAVE_MNL),y)
7
8TIPCOBJ=bearer.o \
9 cmdl.o link.o \
10 media.o misc.o \
11 msg.o nametable.o \
12 node.o socket.o \
13 peer.o tipc.o
14
15TARGETS += tipc
16
17endif
18
19all: $(TARGETS) $(LIBS)
20
21tipc: $(TIPCOBJ)
22 $(QUIET_LINK)$(CC) $^ $(LDFLAGS) $(LDLIBS) -o $@
23
24install: all
25 for i in $(TARGETS); \
26 do install -m 0755 $$i $(DESTDIR)$(SBINDIR); \
27 done
28
29clean:
30 rm -f $(TIPCOBJ) $(TARGETS)