mirror of
https://github.com/freebsd/freebsd-src.git
synced 2024-12-02 12:53:33 +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
15 lines
342 B
Makefile
15 lines
342 B
Makefile
PACKAGE=examples
|
|
FILESDIR=${SHAREDIR}/examples/${PROG}
|
|
PROG= scsi_target
|
|
SRCS= scsi_target.h scsi_target.c scsi_cmds.c
|
|
DPADD= ${LIBCAM} ${LIBSBUF}
|
|
LIBADD+= cam
|
|
LIBADD+= sbuf
|
|
# cast-qual is triggered only in a code path where the volatile keyword doesn't
|
|
# matter
|
|
CFLAGS.scsi_cmds.c= -Wno-cast-qual
|
|
|
|
MAN= scsi_target.8
|
|
|
|
.include <bsd.prog.mk>
|