freebsd-dev/usr.sbin/fwcontrol/Makefile
John Baldwin aa9ce62be5 fwcontrol: Disable -Wzero-length-bounds warnings.
firewire.h includes zero length arrays in unions that trigger this
warning.

Reviewed by:	imp, emaste
Differential Revision:	https://reviews.freebsd.org/D37538
2022-12-04 16:30:20 -08:00

15 lines
251 B
Makefile

# $FreeBSD$
PROG= fwcontrol
SRCS= fwcontrol.c fwcrom.c fwdv.c fwmpegts.c
MAN= fwcontrol.8
WARNS?= 3
.PATH: ${SRCTOP}/sys/dev/firewire
SDIR= ${SRCTOP}/sys
CFLAGS+=-I${.CURDIR} -I${SDIR}
CWARNFLAGS+= ${NO_WZERO_LENGTH_BOUNDS}
.include <bsd.prog.mk>