mirror of
https://git.proxmox.com/git/mirror_iproute2
synced 2026-01-07 20:12:19 +00:00
In iproute2 package, the updates of UAPIs files are performed after the needed feature lands in kernel's net-next tree. Such development flow created delays to the rdma tool developers, who uses rdma-next tree as a basis for their work. Move RDMA UAPI file to be under rdma/ folder, so whole responsibility of syncing this file will be on them. Signed-off-by: Leon Romanovsky <leonro@mellanox.com> Reviewed-by: Steve Wise <swise@opengridcomputing.com> Signed-off-by: David Ahern <dsahern@gmail.com>
24 lines
390 B
Makefile
24 lines
390 B
Makefile
# SPDX-License-Identifier: GPL-2.0
|
|
include ../config.mk
|
|
|
|
TARGETS :=
|
|
|
|
ifeq ($(HAVE_MNL),y)
|
|
CFLAGS += -I./include/uapi/
|
|
|
|
RDMA_OBJ = rdma.o utils.o dev.o link.o res.o
|
|
|
|
TARGETS += rdma
|
|
endif
|
|
|
|
all: $(TARGETS) $(LIBS)
|
|
|
|
rdma: $(RDMA_OBJ) $(LIBS)
|
|
$(QUIET_LINK)$(CC) $^ $(LDFLAGS) $(LDLIBS) -o $@
|
|
|
|
install: all
|
|
install -m 0755 $(TARGETS) $(DESTDIR)$(SBINDIR)
|
|
|
|
clean:
|
|
rm -f $(RDMA_OBJ) $(TARGETS)
|