You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
306 B
20 lines
306 B
4 months ago
|
include ../config.mk
|
||
|
|
||
|
ifeq ($(HAVE_MNL),y)
|
||
|
|
||
|
RDMA_OBJ = rdma.o utils.o dev.o link.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)
|