xref: /freebsd/share/examples/scsi_target/Makefile (revision b64c5a0ace59af62eff52bfe110a521dc73c937b)
1PACKAGE=examples
2FILESDIR=${SHAREDIR}/examples/${PROG}
3PROG=	scsi_target
4SRCS=	scsi_target.h scsi_target.c scsi_cmds.c
5DPADD=	${LIBCAM} ${LIBSBUF}
6LIBADD+=	cam
7LIBADD+=	sbuf
8# cast-qual is triggered only in a code path where the volatile keyword doesn't
9# matter
10CFLAGS.scsi_cmds.c=	-Wno-cast-qual
11
12MAN=	scsi_target.8
13
14.include <bsd.prog.mk>
15