]> git.proxmox.com Git - mirror_iproute2.git/blame - tipc/Makefile
Revert "tipc: add peer remove functionality"
[mirror_iproute2.git] / tipc / Makefile
CommitLineData
acfeb55a
GZ
1include ../Config
2ifeq ($(HAVE_MNL),y)
3
f043759d
RA
4TIPCOBJ=bearer.o \
5 cmdl.o link.o \
6 media.o misc.o \
7 msg.o nametable.o \
8 node.o socket.o \
19ec5f83 9 tipc.o
f043759d 10
a6ea668c
JE
11include ../Config
12
f043759d 13TARGETS=tipc
a6ea668c
JE
14CFLAGS += $(shell $(PKG_CONFIG) libmnl --cflags)
15LDLIBS += $(shell $(PKG_CONFIG) libmnl --libs)
f043759d 16
acfeb55a
GZ
17endif
18
f043759d
RA
19all: $(TARGETS) $(LIBS)
20
21tipc: $(TIPCOBJ)
22
23install: all
24 install -m 0755 $(TARGETS) $(DESTDIR)$(SBINDIR)
25
26clean:
27 rm -f $(TIPCOBJ) $(TARGETS)