mirror of
https://github.com/opnsense/src.git
synced 2026-02-25 11:00:15 -05:00
This could use -fmax-errors on GCC, but tweaking the error limit is unusual in the tree anyway. Just remove it. Reviewed by: erj, imp, emaste Differential Revision: https://reviews.freebsd.org/D36808
22 lines
490 B
Makefile
22 lines
490 B
Makefile
# $FreeBSD: releng/12.1/lib/ofed/libirdma/Makefile 336568 2018-07-20 23:49:57Z kib $
|
|
|
|
_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>
|