mirror of
https://github.com/freebsd/freebsd-src.git
synced 2024-11-26 22:23:08 +00:00
e9ac41698b
This is a residual of the $FreeBSD$ removal. MFC After: 3 days (though I'll just run the command on the branches) Sponsored by: Netflix
31 lines
664 B
Makefile
31 lines
664 B
Makefile
.include <src.opts.mk>
|
|
|
|
CFLAGS+=-I${SRCTOP}/contrib/libucl/include
|
|
.PATH: ${SRCTOP}/contrib/libucl/include
|
|
|
|
PACKAGE= iscsi
|
|
PROG= ctld
|
|
SRCS= ctld.c discovery.c isns.c kernel.c
|
|
SRCS+= login.c parse.y token.l y.tab.h uclparse.c
|
|
CFLAGS+= -I${.CURDIR}
|
|
CFLAGS+= -I${SRCTOP}/sys
|
|
CFLAGS+= -I${SRCTOP}/sys/cam/ctl
|
|
CFLAGS+= -I${SRCTOP}/sys/dev/iscsi
|
|
CFLAGS+= -I${SRCTOP}/lib/libiscsiutil
|
|
#CFLAGS+= -DICL_KERNEL_PROXY
|
|
NO_WCAST_ALIGN=
|
|
MAN= ctld.8 ctl.conf.5
|
|
|
|
LIBADD= bsdxml iscsiutil md sbuf util ucl m nv
|
|
|
|
YFLAGS+= -v
|
|
CLEANFILES= y.tab.c y.tab.h y.output
|
|
|
|
NO_WMISSING_VARIABLE_DECLARATIONS=
|
|
|
|
.if ${MK_ISCSI} != "no"
|
|
CFLAGS+= -DWANT_ISCSI
|
|
.endif
|
|
|
|
.include <bsd.prog.mk>
|