mirror of
https://github.com/opnsense/src.git
synced 2026-05-28 04:12:45 -04:00
Approved by: markj (cddl/contrib changes) Reviewed by: imp, emaste Differential Revision: https://reviews.freebsd.org/D41961 (cherry picked from commit f53355131f65d64e7643d734dbcd4fb2a5de20ed)
20 lines
404 B
Makefile
20 lines
404 B
Makefile
_spath= ${SRCTOP}/contrib/ofed/libirdma
|
|
_ipath= ${SRCTOP}/contrib/ofed/include
|
|
lin_inc=/usr/src/sys/compat/linuxkpi/common/include
|
|
.PATH: ${_spath}
|
|
|
|
SHLIBDIR?= /lib
|
|
LIB= irdma
|
|
SHLIB_MAJOR= 1
|
|
MK_PROFILE= no
|
|
|
|
SRCS= \
|
|
irdma_umain.c \
|
|
irdma_uverbs.c \
|
|
irdma_uk.c \
|
|
|
|
LIBADD= ibverbs pthread
|
|
CFLAGS+= -I${_spath} -I${SRCTOP}/contrib/ofed/libibverbs
|
|
VERSION_MAP= ${_spath}/libirdma.map
|
|
|
|
.include <bsd.lib.mk>
|