3750ccefb8
It was disabled by default in fe52b7f60e. We planned to (but did not)
remove the option before FreeBSD 14. Remove it now, for FreeBSD 15.
Relnotes: Yes
Reviewed by: imp
Sponsored by: The FreeBSD Foundation
Differential Revision: https://reviews.freebsd.org/D31558
36 lines
780 B
Makefile
36 lines
780 B
Makefile
.include <src.opts.mk>
|
|
|
|
_spath= ${SRCTOP}/contrib/ofed/libibnetdisc
|
|
.PATH: ${_spath} ${_spath}/man
|
|
|
|
SHLIBDIR?= /usr/lib
|
|
LIB_CXX= ibnetdisc
|
|
SHLIB_MAJOR= 5
|
|
|
|
SRCS= \
|
|
chassis.c \
|
|
g_hash_table.cpp \
|
|
ibnetdisc.c \
|
|
ibnetdisc_cache.c \
|
|
query_smp.c
|
|
|
|
MAN= \
|
|
ibnd_discover_fabric.3 \
|
|
ibnd_find_node_guid.3 \
|
|
ibnd_iter_nodes.3
|
|
|
|
MLINKS+=ibnd_discover_fabric.3 ibnd_debug.3
|
|
MLINKS+=ibnd_discover_fabric.3 ibnd_destroy_fabric.3
|
|
MLINKS+=ibnd_discover_fabric.3 ibnd_show_progress.3
|
|
MLINKS+=ibnd_find_node_guid.3 ibnd_find_node_dr.3
|
|
MLINKS+=ibnd_iter_nodes.3 ibnd_iter_nodes_type.3
|
|
|
|
LIBADD= osmcomp ibmad ibumad
|
|
CFLAGS+= -DHAVE_CONFIG_H=1
|
|
CFLAGS+= -I${_spath}
|
|
CFLAGS+= -I${SYSROOT:U${DESTDIR}}/${INCLUDEDIR}/infiniband
|
|
CXXSTD= c++11
|
|
VERSION_MAP= ${_spath}/libibnetdisc.map
|
|
|
|
.include <bsd.lib.mk>
|