mirror of
https://github.com/opnsense/src.git
synced 2026-02-03 20:49:35 -05:00
29 lines
596 B
Makefile
29 lines
596 B
Makefile
|
|
SYSDIR?=${SRCTOP}/sys
|
|
.include "${SYSDIR}/conf/kern.opts.mk"
|
|
|
|
.PATH: ${SYSDIR}/dev/iser/
|
|
|
|
KMOD= iser
|
|
|
|
SRCS= icl_iser.c
|
|
SRCS+= iser_initiator.c
|
|
SRCS+= iser_memory.c
|
|
SRCS+= iser_verbs.c
|
|
|
|
SRCS+= ${LINUXKPI_GENSRCS}
|
|
SRCS+= opt_inet.h opt_inet6.h opt_cam.h icl_conn_if.h
|
|
|
|
CFLAGS+= -I${SYSDIR}/
|
|
CFLAGS+= -I${SYSDIR}/ofed/include
|
|
CFLAGS+= -I${SYSDIR}/ofed/include/uapi
|
|
CFLAGS+= ${LINUXKPI_INCLUDES}
|
|
CFLAGS+= -DCONFIG_INFINIBAND_USER_MEM
|
|
CFLAGS+= -DINET6 -DINET
|
|
CFLAGS+= -fms-extensions
|
|
|
|
CFLAGS+=-DICL_KERNEL_PROXY
|
|
|
|
MFILES= kern/bus_if.m kern/device_if.m dev/iscsi/icl_conn_if.m
|
|
|
|
.include <bsd.kmod.mk>
|