freebsd-src/share/examples/scsi_target/Makefile
Warner Losh e9ac41698b Remove residual blank line at start of Makefile
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
2024-07-15 16:43:39 -06:00

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>