fe750c248b
RDMA ibverb is a userspace API to efficiently rx/tx packets. This is an initial, unoptimized driver targeting Mellanox cards. Next steps should include batching, multiqueue and additional cards. Change-Id: I0309c7a543f75f2f9317eaf63ca502ac7a093ef9 Signed-off-by: Benoît Ganne <bganne@cisco.com>
28 lines
539 B
Makefile
Executable File
28 lines
539 B
Makefile
Executable File
#!/usr/bin/make -f
|
|
DH_VERBOSE = 1
|
|
DEB_BUILD_OPTIONS = noddebs
|
|
PKG=vpp-ext-deps
|
|
|
|
VERSION = $(shell dpkg-parsechangelog | sed -nr '/^Version:/s/Version: //p')
|
|
BASE_VER = $(word 1, $(subst -, ,$(VERSION)))
|
|
|
|
export BUILD_DIR=$(CURDIR)/_build
|
|
export INSTALL_DIR=$(CURDIR)/debian/tmp/opt/vpp/external/$(shell uname -m)/
|
|
|
|
MAKE_ARGS=-C ..
|
|
|
|
include /usr/share/dpkg/default.mk
|
|
|
|
%:
|
|
dh $@
|
|
|
|
override_dh_clean:
|
|
make $(MAKE_ARGS) clean
|
|
|
|
override_dh_auto_configure:
|
|
|
|
override_dh_install:
|
|
make $(MAKE_ARGS) install
|
|
dh_install -p$(PKG) --autodest /opt
|
|
|