]> CyberLeo.Net >> Repos - FreeBSD/stable/10.git/blob - sys/modules/iscsi/Makefile
Copy head (r256279) to stable/10 as part of the 10.0-RELEASE cycle.
[FreeBSD/stable/10.git] / sys / modules / iscsi / Makefile
1 # $FreeBSD$
2
3 .PATH:  ${.CURDIR}/../../dev/iscsi/
4 KMOD=   iscsi
5
6 SRCS=   iscsi.c
7 .if defined(ICL_RDMA)
8 SRCS+=  icl_rdma.c
9 .else
10 SRCS+=  icl.c
11 .endif
12 SRCS+=  icl_proxy.c
13 SRCS+=  opt_cam.h
14 SRCS+=  bus_if.h
15 SRCS+=  device_if.h
16
17 # Those below are required for RDMA.
18 SRCS+=  vnode_if.h
19 SRCS+=  opt_inet.h
20 SRCS+=  opt_inet6.h
21
22 CFLAGS+= -I${.CURDIR}/../../ofed/include
23 #CFLAGS+=-DICL_KERNEL_PROXY
24
25 .include <bsd.kmod.mk>